/* 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 */
.contact {cursor:pointer;}
#contactFormContainer {
	position:absolute;
	left:350px;
	z-index:100000;
	text-align:left;
	}
	
/* Hides the whole contact form until needed */	
	#contactForm {
		height:340px;width:560px;
		background:#283F54; 
		border:2px solid #23323F;
		border-bottom:6px solid #23323F;
		padding:7px 12px; 
		color:#EDE8DB;
		display:none;
		-moz-border-radius-bottomleft: 15px;
		-moz-border-radius-bottomright: 15px;
		-webkit-border-radius-bottomleft: 15px;
		-webkit-border-radius-bottomright: 15px;
		} 
		
	#contactForm h2{
		color:#FFF0C7;
		font-family:Georgia,"Times New Roman",Times,serif;
		font-size:2em;
		font-weight:normal;
		margin:0;
		margin-bottom:8px;
		padding:0;
		text-shadow:1px 1px 0.01em rgba(255, 255, 255, 0.3);
	}  
	#contactForm p#desc {padding-bottom:8px; font-size:0.8em; float:right; width:52%; color:#FFF;}
	#contactForm p {padding-bottom:8px; font-size:1em;}
	#contactForm p span#rta {color:#FFF0C7; display:block; font-size:1em; line-height:1.2em;}

/* 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:50px; width:180px;
	background:url(../images/contact_me.png) no-repeat; 
	position:absolute; 
	left:350px; bottom:-45px; 
	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:230px; 
	background:#6d6d6d url(../images/contact_input.png) repeat-x top; 
	color:#fff; 
	border:2px solid #4F4C43; 
	height:18px; 
	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;}
#contactForm .submit {
	border:none;
	text-transform:uppercase;
	color:#FFEFC6;
	margin:1.2em 0.8em 0.3em;
	font-weight:bold;
	width:100px;
	height:40px;
	text-align:center;
	text-shadow:1px 1px 0.01em rgba(0, 0, 0, 0.2);
	font-family:Georgia, "Times New Roman", Times, serif;
	cursor:pointer;
	background-image: url(../images/contact_enviar.gif);
	background-repeat: no-repeat;
	background-position:top center;
	background-color:transparent;
	}
#contactForm label {padding-left:4px; font-weight:bold;}

#contactForm .input_boxes {float:left; width:45%; padding-left:2%}





