@charset "utf-8";
/* CSS Document */

.feedbackform{
padding: 5px;
}

.fieldwrapper{ /*field row DIV (includes two columns- Styled label column and 'thefield' column)*/
	width: 425px; /*width of form rows*/
	overflow: hidden;
	padding: 5px 0;
}

.fieldwrapper label.styled{ /* label elements that should be styled (left column within fieldwrapper DIV) */
	float: left;
	width: 125px; /*width of label (left column)*/
	text-transform: uppercase;
	border-bottom: 1px solid #333;
	margin-right: 15px; /*spacing with right column*/
	color: #fc6;
}

.fieldwrapper div.thefield{ /* DIV that wraps around the actual form fields (right column within fieldwrapper DIV) */
float: left;
margin-bottom: 10px; /* space following the field */
}

.fieldwrapper div.thefield input[type="text"]{ /* style for INPUT type="text" fields. Has no effect in IE7 or below! */
width: 250px;
}

.fieldwrapper div.thefield textarea{ /* style for TEXTAREA fields. */
	width: 250px;
	height: 150px;
}

.buttonsdiv{ /*div that wraps around the submit/reset buttons*/
margin-top: 5px; /*space above buttonsdiv*/
}

.buttonsdiv input{ /* style for INPUT fields within 'buttonsdiv'. Assumed to be form buttons. */
width: 80px;
background: #e1dfe0;
}

</style>

