@charset "utf-8";
/* CSS Document */
#formcontent {
	float: left;
	width: 698px;
	padding: 20px 15px 0 0px;
}
#formcontent p {
	padding: 0 0 5px 15px;
}
#formcontent h1 {
	padding: 0 0 0 15px;
}
#formcontent ul li {
	padding: 0 0 8px 15px;
	background: url(../../images/bullets/simple-black-bullet.gif) 5px 5px no-repeat;
}
#formcontent .imageholder {
	float: right;
	display: inline;
	position: relative;
	width: 223px;
	height: 174px;
	margin: 0 0 0 20px;
	overflow: hidden;
}
#formcontent .imageholder .filter {
	position: absolute;
	top: 0;
	left: 0;
	clear: both;
}

.required {
	font-weight: bold;
	margin: 5px 0 8px 0 !important;
}
.required * {
	vertical-align: middle;
}
.required img {
	display: inline;
}
#formwrapper {
	display: inline;
	float: left;
	margin: 0 0 0 20px;
	width: 679px;
	background: #D0E1E3;
}
#formwrapper .end {
	float: left;
}
/*Here are some rules shared between the normal and a half-row*/
#formwrapper label {
	color: #5F8388;
	font-size: 1.09em;
	font-weight: bold;
	float: left;
	padding: 6px 9px 0 0;
	text-align: right;
	width: 195px;
}
#formwrapper .chkradiodesc label {
	font-weight: normal;
	padding: 0;
	width: auto;
}
#formwrapper .row, form .row_short {
	float: left;
	width: 100%;
	padding: 10px 0 2px 0;
}
/*Set the width for a shorter row*/
#formwrapper .row_short {
	width: 50%;
}
/*Input, Select or Textarea container*/
#formwrapper .row .field, form .row .chkradio {
	float: left;
	position: relative; /*This box will act as a container for the required field marker o_O */
}
#formwrapper .row .field p {
	padding:6px 0 0 0;
}
/*Required field marker*/
#formwrapper .row .required {
	position: absolute;
	top: -3px;
	right: -3px;
	clear: both; /*IE6 bug - needs to be present on ALL absolutely positioned elements*/
	/*Below is just a sample styling*/
	color: #CC0000;
	font-size: 2em;
}
#formwrapper .row .chkradio .required {
	right: -2px !important;
}
/*Nice form field separator*/
#formwrapper .separator {
	border-top: 1px dotted #CCCCCC;
}
/*Create a small space between the LABEL and the actual field*/
#formwrapper .row .field input, form .row .field select, form .row .field textarea {
	margin: 4px 0 0 0;
}
/*Set form element widths*/
.row .short input, .row .short textarea {
	width: 155px;
}
.row .short select {
	width: 68px;
}
.row .medium input, .row .medium select, .row .medium textarea {
	width: 100px;
}
.row .long input, .row .long textarea {
	width: 372px;
}
.row textarea {
	height: 66px;
	overflow: hidden;
}
.row .long select {
	width: 158px;
}
/*Let's style the content now - YOOHOO!*/

/*Set font family for all the form elements*/
input, select, textarea {
	font-family: Arial, Helvetica, sans-serif;
}
.field input, textarea { /*Here we use .field input for the rule not to style any buttons, which are inputs too*/
	font-size: 1em;
	padding: 3px 0 2px 2px; /*This is optional and is usually based on design. Bottom padding is often 1px less then the top*/
	background: #fff url(../../images/forms/input-bg.gif) repeat-x;
	border-bottom: 1px solid #DBDBDB;
	border-left: 1px solid #C1C1C1;
	border-right: 1px solid #C1C1C1;
	border-top: 0;

}
/*Unfortunately we can't just use 1em to style select as IE does not increase the text size this way, so we use percentage*/
select {
	font-size: 100%;
}
/*An example of styling checkbox and radio fields*/
#formwrapper .row .chkradio {
	width: 218px;
	text-align: right;
}
#formwrapper .row .chkradiodesc {
	float: left;
	width: 370px;
	padding: 0 0 0 9px;
}
#formwrapper .row .submit {
	display: inline;
	float: left;
	margin: 0 0 0 206px;
	padding: 0 0 12px 0;
}
/*Let's style up some error messages*/
/* ------------------------------- Field Error */
.rowerror {
	float: left;
	width: 100%;
	padding: 10px 0 7px 0;
}
.errorbarrow {
	float: left;
	width: 602px;
	display: inline;
	margin: 7px 0 0 7px;
}
.errormessage {
	background: #cc0000;
}
.errormessage a {
	color: #fff !important;
	text-decoration: none;    
	border-bottom: 1px dotted #fff !important;   
}
.alertmessage {
	background: #578743;
}
.errormessage, .alertmessage {
	float: left;
	width: 100%;
	padding: 5px 0 5px 0;
	text-align: center;
	color: #fff;
}