#formwrapper {
	float: left;
	width: 90%;
	padding: 10px;
	border: 1px dotted #ccc;
	margin-top:15px;
}
/*Here are some rules shared between the normal and a half-row*/
form .row, form .row_short {
	float: left;
	width: 100%;
	padding: 10px 0 10px 0;
}
/*Set the width for a shorter row*/
form .row_short {
	width: 50%;
}
/*Input, Select or Textarea container*/
form .row .field, form .row .chkradio {
	float: left;
	position: relative; /*This box will act as a container for the required field marker o_O */
}
/*Required field marker*/
form .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;
}
form .row .chkradio .required {
	right: -2px !important;
}
/*Nice form field separator*/
form .separator {
	border-top: 1px dotted #CCCCCC;
}
.denotesRequired {
	color: #CC0000;
	font-size: 2em;
}
/*Create a small space between the LABEL and the actual field*/
form .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 select, .row .short textarea {
	width: 70px;
}
.row .medium input, .row .medium select, .row .medium textarea {
	width: 100px;
}
.row .long input, .row .long select, .row .long textarea {
	width: 200px;
}
/*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: 4px 0 3px 5px; /*This is optional and is usually based on design. Bottom padding is often 1px less then the top*/
}
/*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*/
form .row .chkradio {
	width: 25px;
}
form .row .chkradiodesc {
	float: left;
	width: 470px;
	padding: 3px 0 0 5px;
}
/*Let's style up some error messages*/
form label span {
	display: none;
}

.error {
	display: inline;
	color: #CC0000;
}

.success {
	display: inline;
	color: #97BE0D;
}

/* ---------------------------------------- EVENTS FORM */

.form { float: left; }

.event-title { background: url(../../images/events-title-bg.gif) no-repeat top left; height: 13px; min-height: auto !important; height: 13px; padding: 8px 15px 22px 22px; width: 504px; }
.event-title label { color: #fff !important; font-size: 1.3em !important; font-weight: bold; padding: 5px 0 0 0; }
.event-title .inputfield { height: 22px; }

.form .inputfield { width: 394px; }

.section { background: #ebebe6; margin: 0 0 2px 0; padding: 15px 15px 15px 22px; }
.form h2 { color: #494738; font-size: 1.2em; margin: 0 0 15px 0; display: block; width:100%; font-style: italic; }
.form fieldset { display: block; border: none; padding: 0px; margin: 0 0 8px 0; }
.form span.required { color: #ff9204; display:  inline-block; float: left; font-size: 1.8em; margin: -2px 0 0 4px; }
.faint { font-size:0.6em; color: #9a998f; }
.form label span.required { margin: 0px; display: inline-block; }
.form label { font-size: 1em; margin: 0 0 6px 0; display: inline-block; float: left; color: #494738; padding: 5px 0 0 0; }
.form label.title {  width: 92px; }
.form input { float: left; display: inline-block; border: 1px solid #d0d0c9; height: 22px; font-size:1em; }
.form select { float: left; display: inline-block; border: 1px solid #8a8a8a; }
.form textarea { width:390px; float: left; border: 1px solid #d0d0c9; }
.form span.address4 label { margin: 0 0 0 20px; }
.form .two-col input { width: 134px; }
.strong { float: left; font-weight: bold; font-size: 1.2em; margin: 0 6px 0 0; }

.top { vertical-align: top; }
fieldset.checkbox, fieldset.radio { display: inline-block; margin: 0px; float: left; }
fieldset.checkbox { float: left; margin: 0px; }
fieldset.checkbox label, fieldset.radio label { display: inline-block; }

input#date1, input#date2, input#start1, input#start2, input#end1, input#end2 { width: 36px; margin: 0 3px 0 0; }
input#date3 { width: 54px; margin: 0 0 0 3px; }
input#date2, input#start2, input#end2 { margin: 0 3px 0 3px; }

input#pitch1, input#entrance1, input#pitch2, input#entrance2 { width: 30px; } 
input#pitch1, input#entrance1 { margin: 0 3px 0 0; }
input#pitch2, input#entrance2 { margin: 0 0 0 3px; }

.form .private { margin: 0px 0 0 0; }
.form .private input { margin: 0 10px 0 0; }

.blue { color: #0094c2; display: inline; font-size: 1.1em; padding: 0 5px 0 0; }
.top .blue { padding: 0 0 0 3px; } 

.btnrow  { display: block; float: left; width: 100%; margin: 20px 0 16px 0;}
.btnrow a.reset { display: inline-block; float: right; }
.btnrow input#post { border: none; height: auto; }

.errormessage { background:none repeat scroll 0 0 #ff9204; color:#FFFFFF; font-size:1.1em; font-weight:bold; margin: 0 0 12px 0; padding:6px; text-align:center; }
.alertmessage { background:none repeat scroll 0 0 #0782b4; color:#FFFFFF; font-size:1.1em; font-weight:bold; margin: 0 0 12px 0; padding:6px; text-align:center; }
