html{
	margin: 0px;
	padding: 0px;	
}
body {
	margin: 0px;
	padding: 0px;
	background: transparent;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	line-height: 20px;
	color: #F4F4F4;
}
.container {
	width: 436px;
	margin: 0px auto;
	position: relative;
	z-index: 12;
}
/* Positions the contact form so it doesn't interfere with any other content, as well as a z-index above any other elements on the page */	
#contactFormContainer {
	position: absolute;
	left: auto;
	z-index: 1;
	right: auto;
	border: 1px solid #999999;
	background-color: #FFFFFF;
}
/* Hides the whole contact form until needed */	
#contactForm {
	height: 360px;
	width: 420px;
	background-repeat: no-repeat;
	background-position: 190px 30px;
	background-image: url(../images/schreib.jpg);
	background-color: #ffffff;
	border: 1px solid #929191;
	color: #666;
	/*display: none;*/
	padding: 5px;
	margin: 0px;
}
/* Loading bar that will appear while the ajax magic is happening */
.bar {
	display: none;
	background: url(../images/ajax-loader.gif) no-repeat center;
	margin-top: 100px;
	height: 40px;
	width: 230px;
}
/* Hides the confirmation message until needed */	
#messageSent {
	display: none;
}
/* This hides the form validation alert messages until needed */
#contactForm span {
	display: none;
	font-size: 9px;
	line-height: 10px;
	padding-left: 15px;
	color: #FF0000;
}
/* Some styling for the contact button */
#contactFormContainer .contact {
	height: 40px;
	width: 300px;
	background: url(../images/kontakt.png);
	position: absolute;
	left: 70px;
	bottom: -40px;
	cursor: pointer;
}

#contactFormContainer .contact:hover {
	background: url(../images/kontakt-b.png);
}

/* Hides the darkening layer for the Modal effect. The z-index is necessary for layering purposes, and be sure to keep the positioning/height/width the same */	
#backgroundPopup {
	display: none;
	position: fixed;
	_position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: transparent;
	z-index: 11;
}
/* Form styling from here on out. There is nothing in here that you HAVE to use to get this to work */	
#contactForm textarea, #contactForm input {
	width: 220px;
	color: #333;
	border: 1px solid #8a8a8a;
	height: 13px;
	line-height: 12px;
	font-size: 11px;
	margin: 3px 20px;
	padding: 10px;
	background-color: #F0F0F0;
	border-radius: 4px;
	font: 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
}
#contactForm input {
	background-position: 0px -20px;
	font: 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
}
#contactForm textarea {
	height: 80px;
	font: 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
}
#contactForm .submit {
	border: 1px solid #666666;
	text-transform: uppercase;
	color: #CCCCCC;
	font-weight: bold;
	padding: 7px 16px;
	height: 37px;
	width: 100px;
	cursor: pointer;
	float: left;
	margin-top: 10px;
	background-color: #999999;
	margin-left: 20px;
}
#contactForm .submit:active {
	background-color: #666666;
}
#contactForm .submit:hover {
	background-color: #CCCCCC;
	color: #666666;
}
#contactForm label {
	padding-left: 4px;
	font-weight: bold;
}
#contactForm p {
	padding-bottom: 8px;
	font: 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
}
#contactForm .input_boxes {
	float: left;
	width: 430px;
}
.bottomlink {
	position: absolute;
	bottom: 0;
}

#contactForm #refresh {
	display: inline;
	position: absolute;
	padding-left: 20px;
	padding-top: 0px;
	margin-top: 0px;
}
#contactForm .g-recaptcha {
	margin-left: 20px;
	margin-top: 10px;
}