#contactForm {
	padding-bottom:0;
	margin-top:40px;
}
	
/* 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:368px;
	z-index:1;
	width:100%;
	}
	

/* 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:14px; 
	line-height:16px;
	color:#930;
	margin:6px 0;
	}
	
/* Some styling for the contact button */
#contactFormContainer .contact {
	height:47px; 
	background-color:#59c89d;
	position:absolute; 
	left:368px; bottom:-44px; 
	cursor:pointer;
	}
			
/* 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{
	position:fixed; 
	_position:absolute; 
	width:100%; 
	top:0; left:0;
	background:#000; 
	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 {
	
	color:#000; 
	border:1px solid #8a8a8a; 
	height:30px; 
	line-height:30px; 
	font-size:14px; 
	padding:0px;
	width:100%;
	}
#contactForm input {background-position:0px -20px;}
#contactForm textarea {height:114px; }
#contactForm .submit {
	background:#59c89d; 
	color:#FFF; 
	WIDTH:200px;
	font-weight:normal;
	font-size:15px; 
	/*padding:7px 0 7px 14px; */
	height:37px; 
	cursor:pointer; 
	margin-top:10px;
	}
#contactForm .submit:active {background:#33805c; }
#contactForm label {font-weight:normal;}

#contactForm .input_boxes {float:left; width:80%; min-height:450px;}

.bottomlink {position:absolute; bottom:0;}

.detail {
	padding-bottom:5px;
	font-size:14px;
}


@media (max-width: 500px) {

#contactForm .input_boxes, #contactForm .submit {width:100%; }

}

