/* CSS Document */

body{font-family:Tahoma; font-size:11px; color:#000000; text-decoration:none;}
H1{font-family:Tahoma; font-size:24px; color:#000000; text-decoration:none; font-weight:bold;}
H2{font-family:Tahoma; font-size:20px; color:#000000; text-decoration:none; font-weight:bold;}
H3{font-family:Tahoma; font-size:15px; color:#000000; text-decoration:none; font-weight:bold;}
H4{font-family:Tahoma; font-size:22px; color:#FF0000; text-decoration:none; font-weight:bold;}

.text{font-family:Tahoma; font-size:14px; color:#000000; text-decoration:none; font-weight:none;}
.text2{font-family:Tahoma; font-size:13px; color:#000000; text-decoration:none; font-weight:bold;}
.destaque{font-family:Tahoma; font-size:24px; color:#003399; text-decoration:none; font-weight:bold;}
.destaque3{font-family:Tahoma; font-size:24px; color:#FFF; text-decoration:none; font-weight:bold;}
.talento{font-family:Tahoma; font-size:33px; color:#000000; text-decoration:none; font-weight:bold;}
.destaque2{font-family:Tahoma; font-size:24px; color:#000000; text-decoration:none; font-weight:bold; margin-right:10px}

.textoAnuncio {font-family:Lucida Sans; font-size:11px; font-weight: bold; margin-bottom: 5px; }
.codigo {font-family:Lucida Sans; font-size:11px; font-weight: bold; margin-bottom: 5px; }

.txtlivro{font: 13px tahoma; color:#000000}
.assinatura{font-family:Tahoma; font-size:11px; color:#FFFFFF; text-decoration:none;}


.textfieldRequiredMsg,
.textfieldInvalidFormatMsg,
.textfieldMinValueMsg,
.textfieldMaxValueMsg,
.textfieldMinCharsMsg,
.textfieldMaxCharsMsg,
.textfieldValidMsg {
	display: none;
}

.textfieldRequiredState .textfieldRequiredMsg,
.textfieldInvalidFormatState .textfieldInvalidFormatMsg,
.textfieldMinValueState .textfieldMinValueMsg,
.textfieldMaxValueState .textfieldMaxValueMsg,
.textfieldMinCharsState .textfieldMinCharsMsg,
.textfieldMaxCharsState .textfieldMaxCharsMsg
{
	display: inline;
	color: #CC3333;
	border: 1px solid #CC3333;
}



/* 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)
 */

 /* When the widget is in the valid state the INPUT has a green background applied on it. */
.textfieldValidState input, input.textfieldValidState {
	background-color: #B8F5B1;
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
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;
}

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
.textfieldFocusState input, input.textfieldFocusState {
	background-color: #FFFFCC;
}

/* 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;
}

/* When the widget has the hint message on, the hint text can be styled differently than the user typed text. */
.textfieldHintState input, input.textfieldHintState {
	/*color: red !important;*/
}
