/* CSS Document */

#formcontainer {
	margin-left:5px;
	width:500px
	}
	
	
#formcontainer form  {
	border-top: 1px solid #003366;
} /* the top border is visually 1 px thicker because it touches the div.clearfix bordertop */
	
	
#formcontainer div.clearfix {
	padding:10px 0px;
	vertical-align:top;
	border-top-width: .01em;
	border-right-width: .01em;
	border-bottom-width: .01em;
	border-left-width: .01em;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #003366;
	border-right-color: #003366;
	border-bottom-color: #003366;
	border-left-color: #003366;
	} /* adds the line above each section and provides vertical spacing */
	
	
#formcontainer form label {
	/*width:120px;*/ 
	float:left;
	font-size:.8em;
	color:#333;   
	margin:0 10px;} /* this is the text label on the left of each input */
	

/* postions the submit button by selecting a div with attribute type SUBMIT - IDWIMIE */
#formcontainer input[type="submit"] {
	display:block; 
	margin-left:auto; 
	margin-left:10px;
	}
	
#formcontainer input[type="reset"] {
	display:block; 
	margin-left:auto; 
	margin-left:10px;
	}
/* END OF THE FORMS CSS*/

