#dezineform{
padding: 5px;
}

div.fieldcontainer{ /*field row DIV (includes two columns- Styled label column and 'inputwrap' column)*/
	width: 550px; 
	overflow: hidden;
	padding: 5px 0;
}

div.fieldcontainer label.styled{ /* label elements that should be styled (left column within fieldcontainer DIV) */
	float: left;
	width: 150px;
	border-bottom: 1px solid #DAC28A;
	margin-right: 15px;
	
}

div.fieldcontainer div.inputwrap{ /* DIV that wraps around the actual form fields (right column within fieldcontainer DIV) */
	float: left;
	margin-bottom: 10px; /* space following the field */
}

div.fieldcontainer div.inputwrap input[type="text"]{ /* style for INPUT type="text" fields. Has no effect in IE7 or below! */
	width: 250px;
	border: 1px solid #DAC28A;
	color: #434343;
	font-size: x-small;
	font-weight: normal;
	font-family: verdana, sans-serif;
}

div.fieldcontainer div.inputwrap textarea{ /* style for TEXTAREA fields. */
	width: 300px;
	height: 150px;
	border: 1px solid #DAC28A;
	color: #434343;
	font-size: x-small;
	font-weight: normal;
	font-family: verdana, sans-serif;
}

div.buttonsdiv{ /*div that wraps around the submit/reset buttons*/
	margin-top: 5px; /*space above buttonsdiv*/
}

div.buttonsdiv input{ /* style for INPUT fields within 'buttonsdiv'. Assumed to be form buttons. */
	width: 80px;
	background: #e1dfe0;
}
