

/* forms */

.form_label { /* Used for form labels, such as contact us page */	
	width:100px; 
	float: left;
	overflow:hidden;
	padding: 2px 0px 0px 0px; /* top right bottom left */
	margin: 0px;
	background-color: white;
	border:0px red solid; /* used to test sizing */
	vertical-align:top;
	text-align:right;
	}

.form_field { /* Used for form fields, such as contact us page */	
	width:280px; 
	float: left;
	overflow:hidden;
	padding: 0px 0px 0px 0px; /* top right bottom left */
	margin:  0px 0px 4px 0px; 
	background-color: white;
	border:0px black solid; /* used to test sizing */
	vertical-align:top;
	}

.fieldlength { /* Used for form fields, such as contact us page */	
	padding-left: 3px; /* top right bottom left */
	margin-left: 3px; 
	text-align:left;
	width:250px;}

