@charset "UTF-8";

/* Textfield Message Hidden State */
.textfieldRequiredMsg, 
.textfieldInvalidFormatMsg, 
.textfieldMinValueMsg,
.textfieldMaxValueMsg,
.textfieldMinCharsMsg,
.textfieldMaxCharsMsg,
.textfieldValidMsg {
	display: none;
}

/* Textfield Error / Invalid / Required Message */
.textfieldRequiredState .textfieldRequiredMsg, 
.textfieldInvalidFormatState .textfieldInvalidFormatMsg, 
.textfieldMinValueState .textfieldMinValueMsg,
.textfieldMaxValueState .textfieldMaxValueMsg,
.textfieldMinCharsState .textfieldMinCharsMsg,
.textfieldMaxCharsState .textfieldMaxCharsMsg
{
	display: inline;
	color: #CC3333;
	border: 0px;
}
 
/* Textfield Valid State */
.textfieldValidState input, input.textfieldValidState {
	background-color: #B8F5B1;
	border: 1px solid #006600;
}

/* Textfield Invalid State */
input.textfieldRequiredState, .textfieldRequiredState input, 
input.textfieldInvalidFormatState, .textfieldInvalidFormatState input, 
input.textfieldMinValueState, .textfieldMinValueState input, 
input.textfieldMaxValueState, .textfieldMaxValueState input, 
input.textfieldMinCharsState, .textfieldMinCharsState input, 
input.textfieldMaxCharsState, .textfieldMaxCharsState input {
	background-color: #FF9F9F;
	border: 1px solid #FF0000;
}

/* Textfield Focus State */
.textfieldFocusState input, input.textfieldFocusState {
	background-color: #FFFFFF;
	border: 1px solid #00CCFF;
}

/* Textfield on Fly Invalid Indication */
.textfieldFlashText input, input.textfieldFlashText{
	color: red !important;
}


/* Texarea Message Hidden State */
.textareaRequiredMsg,
.textareaMinCharsMsg,
.textareaMaxCharsMsg,
.textareaValidMsg {
	display:none;
}

/* Textarea Error / Invalid / Required Message */
.textareaRequiredState .textareaRequiredMsg,
.textareaMinCharsState .textareaMinCharsMsg,
.textareaMaxCharsState .textareaMaxCharsMsg
{
	display: inline;
	color: #CC3333;
	border: 0px;
}

 /* Textarea Valid State */
.textareaValidState textarea, textarea.textareaValidState {
	background-color: #B8F5B1;
	border: 1px solid #006600;
}

/* Textarea Invalid State */
textarea.textareaRequiredState, .textareaRequiredState textarea, 
textarea.textareaMinCharsState, .textareaMinCharsState textarea, 
textarea.textareaMaxCharsState, .textareaMaxCharsState textarea {
	background-color: #FF9F9F;
	border: 1px solid #FF0000;
}

/* Textarea Focus State */
.textareaFocusState textarea, textarea.textareaFocusState {
	background-color: #FFFFFF;
	border: 1px solid #00CCFF;
}

/* Texarea on Fly Invalid Indication */
.textareaFlashState textarea, textarea.textareaFlashState{
	color:red !important;
}


/* Select Message Hidden State */ 
.selectRequiredMsg, .selectInvalidMsg {
	display: none;
}

/* Select Error / Invalid / Required Message */
.selectRequiredState .selectRequiredMsg,
.selectInvalidState .selectInvalidMsg {
{
	display: inline;
	color: #CC3333;
	border: 0px;
}

/* Select Valid State */
.selectValidState select, select.selectValidState {
	background-color: #B8F5B1;
	border: 1px solid #006600;
}
/* Select Invalid State */
select.selectRequiredState, .selectRequiredState select,
select.selectInvalidState, .selectInvalidState select {
	background-color: #FF9F9F;
	border: 1px solid #FF0000;
}

/* Select Focus State. */
.selectFocusState select, select.selectFocusState {
	background-color: #FFFFFF;
	border: 1px solid #00CCFF;
}
