﻿/*form building css*/
.feedbackform {
	padding: 5px;
	margin: 50px 0 100px 160px;
	width: 450px;
}
div.fieldwrapper {
	/*field row DIV (includes two columns- Styled label column and 'thefield' column)*/
width: 450px; /*width of form rows*/;
	overflow: hidden;
	padding: 5px 0;
	float: left;
}
div.fieldwrapper label.styled {
	/* label elements that should be styled (left column within fieldwrapper DIV) */
float: left;
	width: 150px; /*width of label (left column)*/;
	text-transform: none;
	color: #333;
	border-bottom: none;
	margin-right: 15px; /*spacing with right column*/
}
div.fieldwrapper label.styled2 {
	/* label elements that should be styled (left column within fieldwrapper DIV) */
float: left;
	width: 250px; /*width of label (left column)*/;
	text-transform: none;
	color: #333;
	border-bottom: none;
	margin-right: 15px; /*spacing with right column*/
}
div.fieldwrapper div.thefield {
	/* DIV that wraps around the actual form fields (right column within fieldwrapper DIV) */
float: left;
	margin-bottom: 10px;
	color: #808080;
}
div.fieldwrapper div.thefield li {
	/* DIV that wraps around the actual form fields (checkBOX) */
	list-style-type: none;
	font-size: 10px;
	padding: 0;
	margin: 0;
}
div.fieldwrapper div.thefield input[type="text"] {
	/* style for INPUT type="text" fields. Has no effect in IE7 or below! */
width: 250px;
	color: #666;
}
div.fieldwrapper div.thefield textarea {
	/* style for TEXTAREA fields. */
width: 415px;
	height: 180px;
	color: #666;
}
div.fieldwrapper div.textfield {
	/* DIV that wraps around the actual form fields (right column within fieldwrapper DIV) */
float: left;
	margin-bottom: 10px;
	color: #808080;
	width: 400px;
}
div.fieldwrapper div.textfield textarea {
	/* style for TEXTAREA fields. */
width: 400px;
	height: 180px;
	color: #666;
	overflow-y: scroll;
}
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;
	}

