.container {
	width:470px;  
	position:absolute;
	left: 50%;
	margin-left: -235px;
	z-index:12;
	}
	
/* 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;
	}
	
/* Hides the whole contact form until needed */	
#contactForm {
	height:303px;
	width:470px;
	background-color: #fff;
	border-left: 8px solid #980000;
	border-bottom: 8px solid #980000;
	border-right: 8px solid #980000;
	padding:7px 12px;
	-moz-border-radius-bottomleft: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-moz-border-radius-bottomright: 8px;
	-webkit-border-bottom-right-radius: 8px;
	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 {
	position:absolute; 
	margin: 230px 430px;
	cursor:pointer;
	color: #666;
	}
			
/* 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:0px;; width:0px; 
	top:0; left:0;
	background:#fff; 
	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:160px; 
	background: #ecebeb; 
	color: #333; 
	border: 2px solid #ccc9c9; 
	height:15px; 
	line-height:14px; 
	font-size:11px; 
	padding: 7px;
	}
#contactForm input {background-position:0px -20px;}
#contactForm textarea {height:114px; font-family:Verdana, Geneva, sans-serif;}
#contactForm .submit {
	border:1px solid #aba8a8; 
	background:#e5e5e5; 
	text-transform:uppercase; 
	color:#4d4d4d; 
	font-weight:bold; 
	padding:7px 16px 7px 14px; 
	height:37px;
	width:124px; 
	cursor:pointer;
	float: left;
	margin-top: 10px;
	}
#contactForm .submit:active {background:#cacaca; }
#contactForm label {padding-left:4px; font-weight:bold;}
#contactForm p {
padding: 0px 0px 0px 0px;
color: #333333
}

#contactForm .input_boxes {float:left;}

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