@charset "UTF-8";
/* CSS Document */
/* version 2: APRIL 29 -- 10:051am */

#formwrapper {
	width: 673px;
	margin-right: auto;
	margin-left: auto;
}

.feedbackform {
	padding: 5px;
}

.fieldwrapper { /*field row DIV (includes two columns: label and field)*/
	width: 683px; /*combined width of form rows*/
	overflow: hidden;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
}
.fieldwrapper a {
	color: #FF9900;
	text-decoration: underline;
}

.fieldwrapper a:hover {
	color: #666699;
	text-decoration: underline;
}

.label { /* left column within fieldwrapper */
	float: left;
	width: 170px; /*width of label (left column)*/
	margin-right: 5px; /*spaces right column*/
	text-align: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
	padding-top: 4px;
}

.labelnone { /* label div without text */
	float: left;
	width: 170px;
	margin-right: 5px; 
}

.field { /* right column within fieldwrapper */
	float: left;
	margin-bottom: 10px;
}

.fieldhed { /* heading above input */
	float: left;
	margin-left: 2px;
	font-size: 11px;
	letter-spacing: 1px;
}

.fieldnote { /* note below inoput */
	float: left;
	font-size: 11px;
	margin-bottom: 5px;
	margin-left: 2px;
	margin-top: -2px;
}

.fieldspace { /* blank vertical spacer for when needed */
	float: left;
	height: 5px;
}

.buttons { /*wraps  the submit/reset buttons*/
	margin-top: 15px;
}
.buttons input { /* form buttons */
	width: 60px;
	background: #FF8000;
	vertical-align: bottom;
	border-top-style: none;
	cursor: pointer; /* hand-shaped cursor */
  cursor: hand; /* for IE 5.x */
}

.buttontext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
}


/* Rollover Submit Button */
.go {
	margin-left: 175px;
	margin-top: 15px;
	background: url(../media/go_btn_roll.gif) no-repeat;
	width: 52px;
	height: 55px;
	border: none;
	cursor: pointer; /* hand-shaped cursor */
  cursor: hand; /* for IE 5.x */
}

.go:hover {
	background: url(../media/go_btn_roll.gif) no-repeat 0 -55px;
}

/* Rollover Submit Button - Left Justified*/
.go_left {
	margin-left: 0px;
	margin-top: 15px;
	background: url(../media/go_btn_roll.gif) no-repeat;
	width: 52px;
	height: 55px;
	border: none;
	cursor: pointer; /* hand-shaped cursor */
  cursor: hand; /* for IE 5.x */
}

.go_left:hover {
	background: url(../media/go_btn_roll.gif) no-repeat 0 -55px;
}

/* JQUERY VALIDATION */

input.error {
	border:1px dotted red;
}

label.error {
	color:red;
	font-style:italic;
}

.LV_valid {
    color:#00CC00;
}
	
.LV_invalid {
    color:#CC0000;
}
    
.LV_valid_field,
input.LV_valid_field:hover, 
input.LV_valid_field:active,
textarea.LV_valid_field:hover, 
textarea.LV_valid_field:active {
    border: 1px solid #99CC00;
}
    
.LV_invalid_field, 
input.LV_invalid_field:hover, 
input.LV_invalid_field:active,
textarea.LV_invalid_field:hover, 
textarea.LV_invalid_field:active {
    border: 1px solid #CC0000;
	background: #FFDFDF;
}
