

.container {
	width:960px; 
	margin:0px auto; 
	
	}
	
/* 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 */	
/* Changed to position:fixed to stop form sticking to top of page when scrolled */
#contactFormContainer {
	position:fixed;
	z-index:12;
	background:#242424; 	
	}
	
/* Hides the whole contact form until needed */	
#contactForm {
	height:400px;
	width:960px;
	
	display:none;
	color:#fff
	}   

/* Loading bar that will appear while the ajax magic is happening */
.bar{
z-index:999;
position:absolute;
	display:none; 
	background:url(../media/contact/ajax-loader.gif) no-repeat center; 
	margin-top:100px; 
	height:40px; width:250px;
	}
	
/* 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:47px; width:211px;
	background:url(../media/contact/contact_me.png) no-repeat top left; 
	

	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;
	}  
	
/* 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:250px; 
	background:#6d6d6d url(../media/contact/contact_input.png) repeat-x top; 
	color:#fff; 
	border:1px solid #8a8a8a; 
	height:15px; 
	line-height:14px; 
	font-size:11px; 
	padding:2px 2px 0px;
	}
#contactForm input {background-position:0px -20px;}
#contactForm textarea {height:50px;}
#contactForm .submit {
	background:#e5e5e5; 
	color:#4d4d4d; 
	font-weight:bold; 
	height:25px; width:80px; 
	cursor:pointer; 
	}
	
#contactForm .submit:active {background:#cacaca; }
#contactForm label {padding-left:4px;}
#contactForm p {padding-bottom:8px; color:#999999; text-align:left;}
#contactForm .input_boxes {width:250px;}


.floatForm {
float:left;
width:250px;
margin:30px;
margin-right:0;
}

.floatAbout {
float:left;
width:550px;
height:330px;
border-left:1px solid #CCCCCC;
margin:30px;
padding-left:30px;
}

.floatForm h3, .floatAbout h3 {
font-size:15px;
font-weight:bold;
margin-bottom:5px;
}

.floatForm p, .floatAbout p {
font-size:12px;
line-height:18px;
}

#contactForm .aboutIntro {
padding-bottom:30px;
}



#contactForm li {
list-style-type:none;
}

#contactForm li.linkedin {
background:url(../media/contact/linkedin.png) no-repeat top left;
}

#contactForm li.facebook {
background:url(../media/contact/facebook.png) no-repeat top left;
}

#contactForm li.twitter {
background:url(../media/contact/twitter.png) no-repeat top left;
}


#contactForm li.linkedin, #contactForm li.facebook, #contactForm li.twitter {
padding-left:140px;
height:40px;
padding-bottom:35px;
}

#contactForm a {
text-decoration:none;
color:#f0f0f0;
}

#contactForm .phone, #contactForm .email {
font-family: Helvetica, Arial, sans-serif;
font-size:12px;
font-weight:bold;
background-color:#000000;
color:#f0f0f0;
padding:2px 4px 1px 4px;
letter-spacing:1px;
}



















