/**** LINK-tag style sheet form.css ****/

/* Dean, this style defines the table that contains the form. Each row has 2 cells. */
.formtable {
	padding: 2px;
	width: 400px;
	background-color: #FFFFFF;
	border: 1px solid #4CB45F;
	margin-top: 25px;
	margin-right: 2px;
	margin-bottom: 10px;
	margin-left: 2px;
	float: left;
}


/* 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: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: left;
	color: #CC0000;
	width: 400px;
	font-weight: bold;
	
}

/* Dean, this style defines the rightmost cell containing the name/description 
   of the form field. */
.formnamecell {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding: 7px;
	background-color: #E5E700;
	color: #333333;
	vertical-align: top;
	
}

/* 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: Arial, Helvetica, sans-serif;
	font-size: 11px;
	background-color: #EBEBEB;
	color: #CC0000;
	padding: 7px;
	font-weight: bold;
}
.formdatacell {
	font-size: 11px;
}
.formdatacell td {
	vertical-align: top;
}


/* 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: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

/* Dean, this style defines the rows containing form section headers. */
.formheader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	background-color: #4CB45F;
	color: #FFFFFF;
	text-align: left;
	font-weight: bold;
}
.formtable2 {
	padding: 2px;
	width: 620px;
	background-color: #FFFFFF;
	border: 1px solid #4CB45F;
	margin-top: 25px;
	margin-right: 2px;
	margin-bottom: 10px;
	margin-left: 2px;
}



