body {}

.container {
	width:600px; 
	margin:0px auto; 
	position:absolute;
	z-index:30;
	font-family: Eurostile, Tahoma;
	}
	
/* 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:relative;
	left:135px;
	
	z-index:40;
	}
	
/* Hides the whole contact form until needed */	
#contactForm {
	height:323px;
	width:508px;
										background: #FFB;
	background-repeat: no-repeat;
	background-position: right;
	border:1px solid transparent;
	display: none;
	color:#ADADAD;
	}   

/* Loading bar that will appear while the ajax magic is happening */
.bar{
	display:none; 
	background:url(../images/cf_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:12px; 
	line-height:10px; 
	padding-left:12px; 
	color:#f5c478;
	}
	
/* Some styling for the contact button */
#contactFormContainer .contact {
	color: #ADADAD;
	height:47px; width:211px;
	position:absolute; 
	left:0px; bottom:-44px; 
	cursor:pointer;
	}
#contactFormContainer .contact:hover {color:#000;}
			
/* 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:29;
	}  
	
/* 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:200px; 
								background: #FFF url(../images/cf_images/contact_input.png) repeat-x top; 
								color:#222; 
	border:1px solid transparent; 
	height:20px; 
	line-height:14px; 
	font-size:16px; 
	padding:2px 2px 0px;
	}
#contactForm input {font-family: Eurostile, Tahoma; background-position:0px -20px;}
#contactForm textarea {height:108px; font-family: Eurostile, Tahoma;}
#contactForm .submit {
	font-family: Eurostile, Tahoma;
	
	display: none;
	position: absolute;
	border:1px solid transparent; 
	background:#FFB; 
	
	color:#A2A2A2; 
	
	padding:7px 16px 7px 14px; 
	height:25px; width:124px; 
	cursor:pointer; 
	left: 106px;
	top: 10px;
	
	margin-top:260px;
	}
#contactForm .submit:hover {color: #000;}
#contactForm .submit:active {background: #ADADAD; }
#contactForm label {padding-left:4px; font-weight:bold;}
#contactForm p {padding-bottom:3px;}
#contactForm .input_boxes {float:left; width:204px; font-size: 16px;}
#contactForm .input_boxes label {color:#000;font-weight:normal;}

.bottomlink {position:absolute; bottom:0;}
