.container 
{
	position: relative;
	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 
{
	position: absolute;
	z-index: 1;
	right: 5px;
}
	
/* Hides the whole contact form until needed */	
#contactForm 
{
	width: 300px;
	height: 450px;
	background: #515151; 
	border: 1px solid #929191;
	padding: 30px 12px; 
	color: #FFFFFF;
	display: none;
	float: left;
	margin-left: 40px;
}   

/* Loading bar that will appear while the ajax magic is happening */
.bar
{
	width: 230px; 
	height: 40px; 
	display: none; 
	background: url(../grfx/ajax-loader.gif) no-repeat center; 
	margin-top: 100px;
}
	
/* 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: #ed1c24;
}
	
/* Some styling for the contact button */
#contactFormContainer .contact 
{
	height: 58px;
	width: 90px;
	margin-right: -20px;
	background: url(../grfx/navigation/btn_contact.png) -5px 0px no-repeat;  
	cursor: pointer;
}
	
#contactFormContainer .contact:hover 
{
	height: 58px;
	width: 90px;
	background: url(../grfx/navigation/btn_contact.png) -95px 0px; 
	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
{
	width:100%; 
	height:100%;
	display: none; 
	position: fixed; 
	_position:absolute;  
	top: 0; 
	left: 0;
	background: #000000; 
	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: #6d6d6d url(../images/contact_input.png) repeat-x top; 
	color: #FFFFFF; 
	border: 1px solid #8a8a8a; 
	height: 15px; 
	line-height: 14px; 
	font-size: 11px; 
	padding: 2px 2px 0px 0px;
}
	
#contactForm .contact 
{
	height: 32px;
	width: 32px;
	float: right;
	padding-right: 15px;
	background: url(../grfx/navigation/close-32.png) no-repeat;
	cursor: pointer;
}
	
#contactForm .contact:hover
{	height: 32px;
	width: 32px;
	float: right;
	padding-right: 15px;
	background:  url(../grfx/navigation/close-32.png) no-repeat;
	cursor: pointer;
}
	
#contactForm input {background-position: 0px -20px;}
#contactForm textarea {height:114px;}
#contactForm .submit 
{ 
	width:124px;
	height: 37px;  
	border: 1px solid #aba8a8; 
	background: #e5e5e5; 
	text-transform: uppercase; 
	color: #4d4d4d; 
	font-weight: bold; 
	padding: 7px 16px 7px 14px;
	cursor: pointer; 
	float: right;
}

#contactForm .submit:active {background:#cacaca; }
#contactForm label {padding-left:4px; font-weight:bold;}
#contactForm p {padding-bottom:8px;}
#contactForm .input_boxes {float:left; width:250px;}

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

