/* 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;*/
	top:0px;
	right:0px;
	z-index:1;
	}
	
/* Hides the whole contact form until needed */	
#contactForm {
	height:280px;
	width:330px;
	background:#f0f0f0; 
	border:1px solid #004c87;
	padding:7px 12px;
	color:black;
	display:none;
	}   

/* 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:104px; 
	color:#ff0000;
	}
	
/* Some styling for the contact button */
#contactFormContainer .contact {
	height:37px;
	position:absolute; 
	/*width:211px;
	left:368px;*/
	right:0px;
	bottom:-20px; 
	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:180px; 
	background:#E6E6E6; 
	border:1px solid #E6E6E6; 
	height:15px; 
	line-height:14px; 
	font-size:11px; 
	padding:2px 2px 0px;
	}
#contactForm textarea {height:100px; font-family:Verdana, Geneva, sans-serif; float:left;}
#contactForm .submit {
	background:#004c87; 
	text-transform:uppercase; 
	color:#FFFFFF; 
	font-weight:bold; 
	padding:5px; 
	height:26px;
	width:100px; 
	cursor:pointer; 
	float:left; 
	margin-left:104px;
	}
#contactForm .submit:active {background:#cacaca; }
#contactForm label {padding-left:4px; font-size:11px;}
#contactForm p {padding-bottom:8px;}
#contactForm .input_boxes {/*float:left; width:204px;*/}

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