

/* 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:320px;
	z-index:12;
	font-size:12px;
	line-height: 20px
	}
	
/* Hides the whole contact form until needed */	
#contactForm {
	height:260px;width:180px;
	background:#3b246c;
	border:1px solid #929191;
	padding:7px 12px; 
	color:#fff;
	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:6px; 
	color:#f5c478;
	}
	
/* Some styling for the contact button */
#contactFormContainer .contact {
	height:30px; width:160px;
	background:url(../images/contact_me.png); 
	position:absolute; 
	left:24px; bottom:-28px; 
	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:#a393c8; 
	z-index:25;
	}  
	
/* Form styling from here on out. There is nothing in here that you HAVE to use to get this to work */	

#contactForm textarea {height:60px; font-family:Verdana, Geneva, sans-serif;}
