@charset "UTF-8";
/* CSS Document */

/*
LiveValidation objects use a few CSS classes to allow you
 to style up the messages and the form fields based upon whether they are valid or not.
    * LV_validation_message - the class that is added to all validation messages
    * LV_valid - the class that is added to a valid message
    * LV_invalid - the class that is added to an invalid message
    * LV_valid_field - the class that is added to a valid field
    * LV_invalid_filed - the class that is added to an invalid field
*/

.LV_valid {
	color:#0000ff;
}

.LV_invalid {
	color:#ff0000;
}

.LV_validation_message{
	font-weight : bold;
	margin : 0 0 0 5px;
}

.LV_valid_field,
input.LV_valid_field:hover, 
input.LV_valid_field:active,
textarea.LV_valid_field:hover, 
textarea.LV_valid_field:active,
.fieldWithErrors input.LV_valid_field,
.fieldWithErrors textarea.LV_valid_field {
	border: 1px solid #0000ff;
}

.LV_invalid_field, 
input.LV_invalid_field:hover, 
input.LV_invalid_field:active,
textarea.LV_invalid_field:hover, 
textarea.LV_invalid_field:active,
.fieldWithErrors input.LV_invalid_field,
.fieldWithErrors textarea.LV_invalid_field {
	border: 1px solid #ff0000;
}
