.container {
	position:absolute;
	border: 1px solid white;
	left: 0px;
	}
	
/* 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;
	padding:0;
	z-index:12;
	}
	
/* Hides the whole contact form until needed */	
#contactForm {
	height:175px;
	width:440px;
	background-color:#4973B5; 
	border:1px solid #929191;
	display:none;
	padding:7px 12px; 
	color:#fff
	}   

/* Loading bar that will appear while the ajax magic is happening */
.bar{
	display:none; 
	background:url(/images/feedback/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:21px; 
	width:96px;
	background:url(/images/feedback/contact_me.png); 
	position:absolute; 
	bottom: -21px;
	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;
	}     