@charset "utf-8";
/* CSS Document */

form {
	margin-left: 25px;
}
.subHead {
	margin-top: .8em;
	text-align:center; 
	margin-bottom: 2em;	
}
.req_input {		
	color: red;	
	font-size: .8em;
}
#FormContainer label {                     /*Gives consistent width to all form labels.*/
	display: block;
	width: 150px;
	margin-bottom: .8em;
}
#FormContainer input[type="text"], select {   /*input[type="text"] not supported in IE6, text input will display at default IE6 width*/
    width: 210px;
}
#FormContainer textarea {
    width: 410px;
    height: 100px;
}
#SubmitButton {     /*Pushes the submit button under the last input area (in this case the <textarea> and aligns it*/
	clear: both;
	margin-left: 150px;
	margin-top: 1.5em;
}

