fieldset{
	border-style: solid;
	border-color: #eee;
	border-width: 1px;
	padding-left: 4ex;
}

fieldset legend{
	margin-left: 4ex;
	font-size: 150%;
	font-weight:bold;
	color:#F19301;
}

#content legend {
	
}

fieldset p{
	width: 60%;
	clear: left;
	margin: 0;
	padding: 5px 0 8px 0;
	padding-left: 155px;
}

fieldset p.first{
	padding-top: 25px;
}

fieldset p.last{
	margin-bottom: 25px;
}

fieldset label{
	font-weight: bold;
	float: left;
	margin-left: -155px; 
	width: 150px;
}

fieldset input[type=text], fieldset select{
	width: 60%;
}

fieldset textarea{
	width: 100%;
	height: 15em;
}

/**
 * 
 * Validation
 * 
 */


input.disabled {
	border: 1px solid #F2F2F2;
	background-color: #F2F2F2;
}

input.required, textarea.required {
	border: 1px solid #00A8E6;
}
input.validation-failed, textarea.validation-failed {
	border: 1px solid #FF3300;
	color : #FF3300;
}
input.validation-passed, textarea.validation-passed {
	border: 1px solid #00CC00;
	color : #000;
}

.validation-advice {
	margin: 5px 0;
	padding: 5px;
	background-color: #FF3300;
	color : #FFF;
	font-weight: bold;
}

.custom-advice {
	margin: 5px 0;
	padding: 5px;
	background-color: #C8AA00;
	color : #FFF;
	font-weight: bold;
}

