@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Raster */

	/* vertikale Zeilen */
	.row{
		width: 100%;
		float: left;
	}

	/* horizontale Spalten */
	.columns{
		float: right;
	}

	/* 2 spaltiges Raster im kleinsten Layout */
	.small-1 {width: 50%;}
	.small-2 {width: 100%;}

	/* 12 spaltiges Raster im groessten Layout */
	.large-1 {width: 8.333333%;}
	.large-2 {width: 16.666666%;}
	.large-3 {width: 25%;}
	.large-4 {width: 33.333333%;}
	.large-5 {width: 41.666666%;}
	.large-6 {width: 50%;}
	.large-7 {width: 58.333333%;}
	.large-8 {width: 66.666666%;}
	.large-9 {width: 75%;}
	.large-10 {width: 83.333333%;}
	.large-11 {width: 91.666666%;}
	.large-12 {width: 100%;}

/* ENDE Raster*/

body{
	background-color: rgb(3, 19, 67);
}

h2{
	color: rgb(255,255,255);
	text-align: center;
}

header{
    position: fixed;
    top: 0;
    height: 3.125em;
    width: 100%;
    border-top: solid 1px rgb(255, 255, 255);
    border-bottom: solid 1px rgb(0, 0, 0);
    background-color: rgb(3, 19, 67);
    background-image:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 0.498039) 3%, rgba(255, 255, 255, 0.0980392) 100%);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.498039) 3%, rgba(255, 255, 255, 0.0980392) 100%);
}

header h1{
	color: rgb(255, 255, 255);
	text-shadow: 0 -1px 0 #000;
    font-size: 2em;
    margin-top: 0.2em;
    text-align: center;
}

nav, section {
    background-color: rgba(250, 250, 250, 0.5);
    border: 1px solid #fff;
    border-radius: 1em;
    padding: 1em;
    position: static;
}

nav{
	margin-right: 2em;
}

nav ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

nav li{
	height: 2em;
	width: 75%;
	margin: 0 auto;
	text-align: center;
}

section{
	margin: 4em auto;
}

label{
	color: #FFF;
	font-weight: bold;
	letter-spacing: 1px;
}

input{
	appearance:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	width: 28em;
	margin: 0.3em auto;
	padding: 0.5em;
	border: 1px solid #fff;
	border-radius: 0.4em;

	box-shadow: 0 0.125em 0.250em rgba(0,0,0,0.3);
	text-shadow: 0 -0.125em -0.250em rgba(0,0,0,0.3);
}

input[type=submit], input[type=reset]{
	background-color: #ccc;
	font-weight: bold;
	font-size: 1.250em;

	appearance:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	border: 0;
	padding-left: 1em;
	padding-right: 1em;
	padding-bottom: 0.5em;
	padding-top: 0.5em;
	margin: 0.5em auto;
	width: 14em;

	background-color: rgb(10,62,220);
	color: #FFF;

	border-radius: 0.536em;
	box-shadow: 0 0.125em 0.250em rgba(0,0,0,0.3);
	text-shadow: 0 -0.125em -0.250em rgba(0,0,0,0.3);

	background-image:
		linear-gradient(to bottom,
			rgba(255,255,255,0.6) 0%,
			rgba(255,255,255,0.3) 50%,
			rgba(255,255,255,0) 51%,
			rgba(255,255,255,0.2) 100%);

	text-decoration: none;
	outline: none;
}

input[type=reset]{
	background-color: rgb(255,0,0);
}

footer{
    position: fixed;
    bottom: 0;
    height: 3.125em;
    width: 100%;
    border-bottom: solid 1px rgb(255, 255, 255);
    border-top: solid 1px rgb(0, 0, 0);
    background-color: rgb(3, 19, 67);
    background-image:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 0.498039) 3%, rgba(255, 255, 255, 0.0980392) 100%);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.498039) 3%, rgba(255, 255, 255, 0.0980392) 100%);
}

footer p{
	color: rgb(255, 255, 255);
}
/**** ENDE ALLGEMEINER TEIL ****/

#eingabe_form, #login_form{
	width: 75%;
	margin: 0 auto;
	text-align: center;
}

#eingabe_form .eingabe_anz{
	display: inline-block;
	width: 22.6em;
}

#eingabe_form input[type="number"]{
	width: 5em;
	font-weight: bold;
	text-align: center;
	-moz-appearance: textfield;
}

#eingabe_form input[type="date"]{
	width: 18.7em;
}

#int_ArtID{
	background-color: rgb(150,150,150);
	color: rgb(255,255,255);
}


#info {
	position: fixed;
    bottom: 0;
    color: #fff;
    padding-left: 0.5em;
    z-index: 1;    
}