@charset "UTF-8";
/*
=======================================================================
||				INFOBRAS - Infomática Brasileira		 			 ||
||___________________________________________________________________||
||														 			 ||
||			ARQUIVO.....: SpryValidationTextField.css			     ||
||			ATIVIDADE...: Stylo - Formularios				 		 ||
||			PROGRAMADOR.: José Luiz Dias Simão	  					 ||
||			DATA........: 06/03/2008								 ||
||			ATUALIZADO..: 											 ||
||			CONTATO.....: zecatk@gmail.com 							 ||
||																	 ||
=======================================================================
*/
/* SpryFormValidation.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */


/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.textfieldRequiredMsg, 
.textfieldInvalidFormatMsg, 
.textfieldMinValueMsg,
.textfieldMaxValueMsg,
.textfieldMinCharsMsg,
.textfieldMaxCharsMsg,
.textfieldValidMsg {
	display: none;
	
}

/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and color for the error text.
 * The state class (e.g. .textfieldRequiredState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.textfieldRequiredState .textfieldRequiredMsg, 
.textfieldInvalidFormatState .textfieldInvalidFormatMsg, 
.textfieldMinValueState .textfieldMinValueMsg,
.textfieldMaxValueState .textfieldMaxValueMsg,
.textfieldMinCharsState .textfieldMinCharsMsg,
.textfieldMaxCharsState .textfieldMaxCharsMsg
{
	display: inline-block;
}



/* The next three group selectors control the way the core element (INPUT) looks like when the widget is in one of the states: * focus, required / invalid / minValue / maxValue / minChars / maxChars , valid 
 * There are two selectors for each state, to cover the two main usecases for the widget:
 * - the widget id is placed on the top level container for the INPUT
 * - the widget id is placed on the INPUT element itself (there are no error messages)
 */
 
 /* texto ok */
 .box_g {
	font-family: Tahoma, Arial;
	font-size: 14px;
	color: #333333;
	padding:3px;
	vertical-align: middle;
	background-color: #ffffff;
	border:1px solid #CCCCCC;
	background-image:url(../imgs/bg_form_campo.jpg);
	background-repeat:repeat-x;
	background-position:top;
	padding-left: 5px;
}
.box_h {
	height:25px;
}
.textfieldValidState input, input.textfieldValidState {
	background-color: #FFF;
}

/* texto erro. */
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: url(../imgs/bg_form_erro.jpg) bottom repeat-x;
	border: #FF3300 solid 1px;
	background-color: #FFFFFF;
}

/* texto inicio */
.textfieldFocusState input, input.textfieldFocusState {
	background-image:url(../imgs/bg_form_campo.jpg); background-repeat:repeat-x; background-position:top;
	border:#72A6D6 solid 1px;
	 
}

/* This class applies only for a short period of time and changes the way the text in the textbox looks like.
 * It applies only when the widget has character masking enabled and the user tries to type in an invalid character.
 */
.textfieldFlashText input, input.textfieldFlashText{
	color: red !important;
}
