@charset "UTF-8";

.textareaRequiredMsg,
.textareaMinCharsMsg,
.textareaMaxCharsMsg,
.textareaValidMsg {
	display:none;
}

/* texte avertissement */
.textareaRequiredState .textareaRequiredMsg,
.textareaMinCharsState .textareaMinCharsMsg,
.textareaMaxCharsState .textareaMaxCharsMsg
{
	color: #860909;
	font-family:tahoma;
	font-size:12px;
	font-weight:bold;
	display:inline;
}

/* champ validé */
.textareaValidState textarea, textarea.textareaValidState {
	background-color:#FFFFFF;
}

/* champ invalide */
textarea.textareaRequiredState, .textareaRequiredState textarea, 
textarea.textareaMinCharsState, .textareaMinCharsState textarea, 
textarea.textareaMaxCharsState, .textareaMaxCharsState textarea {
	background-color:#860909;
}

/* champ activé */
.textareaFocusState textarea, textarea.textareaFocusState {
	background-color:#CCCCCC;
}

/* This class applies only for a short period of time and changes the way the text in the textarea looks like.
 * It applies only when the widget has enforce max chars enabled and the user tries to type some more.
 */
.textareaFlashState textarea, textarea.textareaFlashState{
	color:red !important;
}

