/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.feedbackform{
padding: 0;
}

.feedbackform h1{border-bottom:1px #f60 solid; margin-bottom:15px;}

div.fieldwrapper{ /*field row DIV (includes two columns- Styled label column and 'thefield' column)*/
width: 100%; /*width of form rows*/
overflow: hidden;
padding: 5px 0;
}

div.fieldwrapper label.styled{ /* label elements that should be styled (left column within fieldwrapper DIV) */
clear:left;
width:auto; /*width of label (left column)*/
text-transform: uppercase;
text-align:left;
}

div.fieldwrapper div.thefield{ /* DIV that wraps around the actual form fields (right column within fieldwrapper DIV) */
clear:left;
margin-bottom: 10px; /* space following the field */
}

div.fieldwrapper div.thefield ul{
	margin:0; padding:0; list-style:none;
}
div.fieldwrapper div.thefield ul li{margin:0; padding:0;}

div.fieldwrapper div.thefield input[type="text"]{ /* style for INPUT type="text" fields. Has no effect in IE7 or below! */
width: 100%;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}

div.fieldwrapper div.thefield textarea{ /* style for TEXTAREA fields. */
width: 100%;
height: 150px;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:11px;
}

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;
}