
/* 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: fixed;
	left:967px;
	z-index:90001;
	bottom: 0;
	
	}
	
/* Hides the whole contact form until needed */	
#contactForm {
height: 437px;
width: 342px;
background: #699302;
border: 1px solid #FFFFFF;
padding: 7px 12px;
color: #fff;
display: none;
margin-left: 84x;
	}   

/* 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: 40px;
width: 125px;
background: url(../images/contact_me.png);
position: absolute;
left: 217px;
bottom: -2px;
cursor: pointer;
z-index:9000;
	}
			
/* 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: 9006;
	}  
	
/* 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:305px; 
	background:#FFF;
	font-size:13px;
	color:#000;
	border:1px solid #8a8a8a; 
	height:33px; 
	line-height:14px; 
	font-size:11px; 
	padding:2px 2px 0px;
	
	}
#contactForm input {background-position:0px -20px;}
#contactForm textarea {height:114px; font-family:Verdana, Geneva, sans-serif; color:#000; font-size:13px; }
#contactForm .submit {
	border: 1px solid #FFFDFD;
background: #333333;
text-transform: uppercase;
color: #FFFFFF;
padding: 7px 16px 7px 30px;
height: 37px;
width: 100px;
font-size: 14px;
cursor: pointer;
float: left;
	}
#contactForm .submit:active {background:#cacaca; }
#contactForm label {padding-left:4px; font-weight:bold; font-size: 12px;}
#contactForm p {padding-bottom:8px;}
#contactForm .input_boxes {float:left; width:204px;}
#contactForm .input_boxes label {font-size:13px; font-weight:normal;}

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