/* Dean, this style defines the table that contains the form. Each row has 2 cells. */
.formtable {
	padding: 2px;
	margin-top:15px;
	width: 400px;
	border: 1px solid #663300;
}

/* 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: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	font-weight: bold;
	text-align: center;
	color: #FF3300;
	width: 400px;
	
}

/* Dean, this style defines the rightmost cell containing the name/description 
   of the form field. */
.formnamecell {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	font-weight: bold;
	padding: 4px;
	background-color: #990000;
	color: #ffffff;
	
}

/* 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: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	font-weight: bold;
	background-color: #ffffff; 
	color: #990000;
	padding: 4px;
}

/* 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 {


}

/* Dean, this style defines the rows containing form section headers. */
.formheader {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;
}

.formdatacell input{
	background-color: #ECE9D9;
	font-size: 11px;
	color: #663300;
	padding: 4px;
	font-family: Georgia, "Times New Roman", Times, serif;
	border: 1px solid #663300;
}

.formdatacell textarea{
	background-color: #ECE9D9;
	font-size: 11px;
	color: #663300;
	padding: 4px;
	font-family: Georgia, "Times New Roman", Times, serif;
	border: 1px solid #663300;

