/* Dean, this style defines the table that contains the form. Each row has 2 cells. */
.formtable {
	padding: 2px;
	margin: 2px;
	margin-top:25px;
	width: 400px;
	/*background-color: #993B3B;*/
	background-color: #9E6A6A;
	border: 3px solid #fff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	border-collapse: collapse;
}

/* Dean, this style defines the cell that contains the text displayed if not 
   all required forms are filled in. EX: Please complete all required fields.*/
.requiredtext {
	font-family: verdana;
	font-size: 11px;
	text-align: center;
	color: #FF3300;
	width: 400px;
	
}

.formtable td { padding: 6px; vertical-align: top; }

/* Dean, this style defines the rightmost cell containing the name/description 
   of the form field. */
.formnamecell {
	margin-left: 4px;
	font-family: verdana;
	font-size: 11px;
	/*background-color: #EBEBEB;
	color: #333333;*/
	color: #fff;
	font-weight: bold;
	width: 30%;
}

/* Dean, this style defines the rightmost cell containing the name/description 
   of the form field if the field is required, and not filled in. EX: red text. */
.invalidformnamecell {
	font-family: verdana;
	font-size: 11px;
	background-color: #C68D55; 
	color: #A83535;
}

/* Dean, this style defines the leftmost cell containing the form field. */
.formfieldcell {
	

}

/* Dean, this style defines the cell containing the form title. (NOT USED ON
   RIVERBIRCH! */
.formtitle {
	font-family: verdana;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

/* Dean, this style defines the rows containing form section headers. */
.formheader {
	font-family: verdana;
	font-size: 12px;
	color: #fff;
}

.formtable .formheader { padding-bottom: 8px; }

textarea, input, select { font-family: Arial, Helvetica, sans-serif; font-size: 12px; }
