@charset "utf-8";
/* CSS Document */

html, body {
	margin:0;
	padding:0;
	
}

#wrapper {
	width:100%;
}

#logo {
	text-align:center;
	position: absolute;
	top: 200px;
	left: 0;
	right: 0;
	margin: auto
}

#contact {
	text-align:center;
	position: absolute;
	top: 275px;
	left: 0;
	right: 0;
	margin: auto;
	display:none;
	}

#contact input {
    border: 1px solid #ccc;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 32px;
    width: 400px;
    font-family: Helvetica;
    font-size: 12px;
    padding: 8px;
	margin-bottom:5px;
}
 
#contact textarea {
    border: 1px solid #ccc;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 180px;
    width: 400px;
    max-width: 400px;
    font-family: Helvetica;
    font-size: 12px;
	margin-left:5px;
    padding: 8px;
}
 
#contact input[type=submit] {
	font-family: Arial;
	color: #ffffff;
	font-size: 20px;
	background: #00a6ff;
	padding: 10px 20px 30px 20px;
	text-decoration: none;
	cursor:pointer;
}
 
#contact input[type=submit]:hover { 
	background: #00ffff;
	text-decoration: none;
}

#footer {
   position:absolute;
   bottom:0;
   width:100%;
   text-align:right;
}

#footer a {
	font: normal 16px/1em "Courier New", Courier, monospace;
	color:#B2B2B2;
	text-decoration:none;
	line-height:30px;
	padding-right:10px;
}

#impressum {
	display:none;
	background: #FFF;
	text-align: left;
	padding: 0 25px 10px 25px;
	color: #000;
	border:5px solid #00a6ff;
	-webkit-box-shadow: 10px 10px 83px -6px rgba(0,0,0,0.54);
	-moz-box-shadow: 10px 10px 83px -6px rgba(0,0,0,0.54);
	box-shadow: 10px 10px 83px -6px rgba(0,0,0,0.54);
}

#impressum_schliessen{
	position:absolute;
	top:5px;
	right:5px;
	cursor:pointer
}

#formResult {
	text-align:center;
	position: absolute;
	top: 125px;
	left: 0;
	right: 0;
	margin: auto;
	}

.contactError {
	outline: none;
    border-color: #F00;
    box-shadow: 0 0 10px #C00;
}

.contactError:focus {
    border: 1px solid #ccc;
	box-shadow: 0 0 0 #C00;
}

h1, h2, h3 {
	font-family:Courier;
}

p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;	
}