/*________________________________ Globals */
/*
	Many styles must have an !important added onto it,
	otherwise when the response from FreeForm is loaded
	via AJAX, the CSS from that document will overtake
	these styles.
	
	What I have here fixes a majority of the problems.
	Let me know if you find more fixes.
*/
*{margin:0; padding:0; outline:none;}
html, body{
	background-color: #000 !important;
	color:#FFF !important;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:0.8em !important;
	margin: 0 !important;
}
a:link, a:visited{
	color: #ffe9d3 !important;;
	text-decoration:none;
}
a:active, a:hover{
	color: #ebffe5 !important;;
	text-decoration:none;
}
.fLeft{float:left;}
.fRight{float:right;}
.clear{clear:both;}
/*________________________________ Design */
#content{
	color: white !important;
	border-left: 1px solid #808080;
	border-right: 1px solid #808080;
	border-bottom: 1px solid #808080;
	margin:0 auto !important;
	width:600px !important;
	padding:1em !important;
	background-color:#1d1d1d !important; 
}
#head{
	border-bottom: 1px solid #808080;
	margin-bottom: 1em;
}
#head h1{
	font-size: 2em !important;
	text-align:center !important;
	margin: 0 !important;
	color: #FFF !important;
}
#head h3{
	font-size: 1.3em !important;
	text-align:center !important;
	margin: 0 !important;
	color: #FFF !important;
}
#foot{
	text-align: center;
	margin-top: 0.5em;
}
/*_____________________________ Form Stuff */
label{
	display: block;
	background-color: #808080;
	border-top:1px solid #808080;
	border-right:1px solid #808080;
	border-left:1px solid #808080;
	padding: 0.3em;
	color: #1d1d1d;
	font-weight: bold;
}
.contactfield{
	margin-bottom: 1.5em;
}
.formField{
	color: #FFF;
	padding: 2px;
	width: 300px;
	border: 1px solid #808080;
	background-color: #444444;
}
#captcha_field{
	width:135px;
	height:24px;
	font-size:20px;
	margin:0px;
}
#captcha_label{
	background-color: transparent;
	color: #FFF;
	border: none;
}
#captcha_img{
	display: block;
	float:left;
	border:none;
}
#captcha_arrow{
	float:left;
	width: 18px;
	height: 30px;
	margin: 0 2px;
	background: url(/images/projects/arrow.gif) no-repeat;
}
.button{
	width: 145px;
	padding: 2px;
	background-color: #444;
	color: #FFF;
	font-size: 1.1em;
	border-top: 2px solid #808080;
	border-left: 2px solid #808080;
	border-bottom: 2px solid #505050;
	border-right: 2px solid #505050;
}
.button:hover{
    background-color:#333;
    color:#FFF;
}
.button:active{
	color: #CCC;
   	border-top: 2px solid #505050;
	border-left: 2px solid #505050;
	border-bottom: 2px solid #808080;
	border-right: 2px solid #808080;
	outline: none;
}