/*---------------------------------------Form----------------------------*/
	
/* 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 {
	z-index:1;
	width:480px;
	float:left;
	}
	
/* Hides the whole contact form until needed */	
#contactForm {
	height:290px;
	width:480px;
	color:#018ba8;
}   

/* Loading bar that will appear while the ajax magic is happening */
.bar{
	display:none; 
	background:url(../img/ajax-loader1.gif) no-repeat center; 
	margin-top:125px;
	margin-left:220px;
	height:40px; width:40px;
	}
	
/* Hides the confirmation message until needed */	
#messageSent {display:none;}

/* This hides the form validation alert messages until needed */
#contactForm span {
	display:none;
	font-size:12px;
	line-height:15px;
	padding-left:6px;
	color:#666;
	}
	
/* Some styling for the contact button 
#contactFormContainer .contact {
	height:47px; width:211px;
	background:url(../images/contact_me.png); 
	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{
	display:none; 
	position:fixed; 
	_position:absolute; 
	height:100%; 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 {
	width:460px;
	background-color: #f4f4f5;
	color:#666;
	height:20px;
	line-height:23px;
	font-size:13px;
	border:1px solid #ccc;
	border-radius:5px;
	}
#contactForm input {background-position:0px -20px;}
#contactForm textarea {height:100px; font-family:"Museo 900", Verdana, serif;}
#contactForm .submit {
	text-transform:uppercase;
	color:#FFF;
	height:30px;
	width:120px;
	cursor:pointer;
	float:right;
	font-family:"Museo 900", Verdana, serif;
	font-size:15px;
	margin-top:1px;
	margin-right:15px;
	background-color: #62647d;
	}
#contactForm .submit:hover {
	background-color: #666;
	color:#FFF;
}
#contactForm label {
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif;
	color:#62647d;
	line-height:20px;
	text-transform:uppercase;
}
#contactForm p {padding-bottom:8px;}
#contactForm .input_boxes {float:left; width:400px; font-family:"Museo 900", Verdana, serif; font-size:14px; line-height:18px;}

#dummycontent {padding-top:100px; height:600px; position:relative;}
.bottomlink {position:absolute; bottom:0;}


