/* Form Fields & buttons */

/* Titles separating sections of a form (this is NOT the Box Title)*/
.formtitle {
	font-size: 12px;
	font-weight : bold;
}

/* Appears at top of form if page returns an error */
.formerror {
	font-size: 12px;
	color : #d6a213;
}

/* Used in the login box ('user name not found', etc.) */
.formerrorsmall {
	font-size: 10px;
	color : #d6a213;
}

/* Form field names '*/
.formtext {
	font-size: 12px;
}

/* Instructions below form fields '*/
.formtextsmall {
	font-size: 10px; 
}

/* Used in the login box for 'name' and 'password'*/
.FormTextVerySmall {
	font-size: 9px;
	color: gray;
}

/* Default Field Styles 
select, option, input, textarea {
	background-color: #4f7810;
	border: #d6a213 solid 1px;
	color: #fff;
	font-size: 12.5px;
	font-weight: bold;
}

select:focus, option:focus, input:focus, textarea:focus {
	background-color: #d6a213;
	border: #4f7810 solid 1px;
	color: #fff;
	font-size: 12.5px;
	font-weight: bold;
}*/

/* Form class styles */
select.inputfield, option.inputfield, input.inputfield, textarea.inputfield {
	background-color: #fff;
	border: #000 solid 1px;
	color: #000;
	font-size: 12.5px;
}

select.inputfield:focus, option.inputfield:focus, input.inputfield:focus, textarea.inputfield:focus {
	background-color: #fff;
	border: #000 solid 1px;
	color: #000;
	font-size: 12.5px;
}

.formfieldlogin, .formfield, .formfieldselect, .formfieldcheckbox, .formbutton {
	background-color: #fff;
	border: #000 solid 1px;
	color: #000;
	font-size: 12.5px;
}

.formfieldlogin:focus, .formfield:focus, .formfieldselect:focus, .formfieldcheckbox:focus, .formbutton:focus {
	background-color: #fff;
	border: #000 solid 1px;
	color: #000;
	font-size: 12.5px;
}

a.formbutton, a.formbutton:visited, a.formbutton:hover {
	color: #fff;
	text-decoration: none;
}










/* Frame around fom field sets */

fieldset#ContactUs{
	margin: 0px 5px 0px 10px;
	padding:1em;
	border: solid 1 #d6a213;
	}
	
legend{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight:bold;
	color:#000;
	margin: 0;
	padding:0;
}	

#ContactUs h2{
	display:block;
	padding:2;
	float:left;
	font-size:1em;
	font-weight:bold;
}

label{
	float:left;
	width:10em;
	margin-top:.8em;
	vertical-align:top;
}

fieldset#ContactInfo{
	border: solid 0 transparent;
	}
	
#ContactInfo div{
	margin-bottom:1.5em;
}

input.inputfield {
	width:200px;
	margin-top:.5em;
}

textarea{
	width:300px;
	height:100px;
}
	

fieldset#CheckBoxes{
	margin:10px 0px 0px 0px;
	padding:0;
	border:none;
	background: transparent;
	}

#CheckBoxes div{
	width:20em;
	float:left;
}

#CheckBoxes label{
	width:4em;
	float:none;
	display:inline;
}



#CheckBoxes p{
	margin: 0.3em 0;
}

input.checkboxr, input.radio{
	float:none;
	margin-right:1em;
	width:1.5em;
}

.required{
	margin-right:.25em;
	font-size:1em;
	color:#760000;
}

/* The form fields for the login box have width set as well */

/* Used to set margins on a form tag */
form.margins {
	margin: 10px; 
	padding: 0px;
}
form.nomargins {
	margin: 0px; 
	padding: 0px;
}

/* Simple Search Field */

#searchbox {
}

#searchbox .formfield {
	width: 120px;
	font-size: 11px;
}


