/*
    * required (not blank)
    * validate-number (a valid number)
    * validate-digits (digits only)
    * validate-alpha (letters only)
    * validate-alphanum (only letters and numbers)
    * validate-date (a valid date value)
    * validate-email (a valid email address)
    * validate-url (a valid URL)
    * validate-date-au (a date formatted as; dd/mm/yyyy)
    * validate-currency-dollar (a valid dollar value)
    * validate-selection (first option e.g. 'Select one...' is not selected option)
    * validate-one-required (At least one textbox/radio element must be selected in a group - see below*)

*/

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

input.required, textarea.required {
	border: 1px solid #6B9D16;
}
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: #FF7F50;
	color : #FFF;
	font-weight: bold;
}

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

fieldset {
	padding: 1em;
	margin-bottom: 0.5em;
}

label {
	font-weight: bold;
}
.form-row {
	clear: both;
	padding: 0.5em;
}

.field-label {

}

.field-widget {

}
