@charset "utf-8";
/* CSS Document */
.formBox{
	padding:10px 20px 20px 20px;
	background:url(Imgs/BGs/Form_BG.gif) no-repeat;
}
form h2{
	margin-top:8px;
	margin-bottom:16px;	
	font-size: 1.8em;
	text-align:center;
}
label{
	float:left;
	width:140px;
	text-align:right;
	clear:left;
	margin:2px 5px 0 0;
}
input.text {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	width:270px;
	background: #e1f1ff url(Imgs/BGs/FormField_BG.gif) repeat-x;
	border: 1px solid #00467D;
	padding: 0.1em 0.2em;
}
input.text.vericode{
	width: 142px;
}
textarea{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:inherit; /*Firefox hack*/
	width:400px;
	height:80px;
	background: #e1f1ff url(Imgs/BGs/FormField_BG.gif) repeat-x;
	border: 1px solid #00467D;
	padding: 2px; /*em values inconsistent across browsers*/
}
input[type=image] {
	border: none;
	padding: 0;
}
input.button, .vericodeImg{
margin-left:145px;	
}

.errors{/*div container for error summary*/
	padding:10px 20px 0 20px;
	margin-bottom:25px;
	min-height:100px;
	background:url(Imgs/BGs/Errors_BG.jpg) no-repeat;
	color:#700;
}
.errors h2{
	color:#700;
}
.required, .invalid{
	color:#c00;
}
input.required, input.invalid, textarea.required{
	color:#000;
	background:#F9E3E3 url(Imgs/BGs/FormField_Required_BG.gif) repeat-x;
	border:1px solid #900;
}