.form_input_box { /* This is confirmed working. Highlights the input box to a darker shade. */
 background: #fefbd6;
}
.form_input_sector { /* This is not working in IE. Sector separated from other input to remove boxes around the radio buttons. */
 border: none;
 background: #fff;
}
.button { /* This is confirmed working. display & width values create the space needed for background to show full image size.*/
 display: block;
 width: 80px;
 color: #471236;
 font-weight: bold;
 font-family: Free Sans, Verdana, sans-serif;
 border: none;
 background: url('/images/submit_bg.png');
 padding: 3px 8px;
}
label { /* This is confirmed working. This section defines the spacing around the title of each input field (ie First Nam, Phone #, etc. */
 display: block;
 width: 100px;
 float: left;
 margin: 2px 4px 6px 4px;
 text-align: left;
}    
.form_text_required {  /* This is confirmed working. Color only works if it is listed as class="form_text" in html. Otherwise need to add color to head of html. */
 font-family: Free Sans, Verdana, sans-serif;
 font-size: .9em;
 color: #471236;
 border: none;
 font-weight: bold;
}
.form_text {  /* This is confirmed working. Color only works if it is listed as class="form_text" in html. Otherwise need to add color to head of html. */
 font-family: Free Sans, Verdana, sans-serif;
 font-size: .9em;
 color: #471236;
 border: none;
}
.asterisk {  /* This is confirmed working. Special color for asterisk was needed. */
	font-family: Free Sans, Verdana, sans-serif;
	color: #FF0000;
	border: none;
	font-size: 75%;
	font-weight: bold;
}
fieldset {
	margin-right: auto;
	margin-left: auto;
	width: 90%;
}
fieldseta {
	margin-right: auto;
	margin-left: auto;
	width: 90%;
	border: none;
}
legend {
	font-family: Free Sans, Verdana, sans-serif;
 font-size: .8em;
 border: none;
	font-weight: bold;
}
.res_biz {
	font-family: Free Sans, Verdana, sans-serif;
 font-size: .8em;
 color: #000000;
}
ul {
	text-align: left;
}
.required-fields {
 color: red;
}

