@charset "UTF-8";

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



/* 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;
}
.nomes_formulario {
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #353941;
	margin: 10px 0 0 0;
}
label #nome {
	width: 260px;
	height: 20px;
	padding: 2px 0 2px 0;
}
label #email {
	width: 260px;
	height: 20px;
	padding: 2px 0 2px 0;
}
label #assunto {
	width: 210px;
	height: 20px;
	padding: 2px 0 2px 0;
}
textarea {
	width: 260px;
}
.campos {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666;
	padding: 3px 0 3px 0;
	font-weight: bold;
}
#botoes {
	margin: 10px 0 25px 0;
	font-weight: normal;
}
.campos_botao {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666;
	padding: 3px 0 3px 0;
}

#concr {
	padding: 20px 0 20px 50px;
	background: #efefef;
	border: 1px solid #d0d0d0;
	width: 320px;
}
#concr img {
	margin: 20px 0 0 3.3em;
}
#right_dicas {
	float: right;
	width: 268px;
	background: url(../imagens/contato/effects.gif) no-repeat #EFEFEF;
	padding: 14px 10px 14px 0px;
	
}
#right_dicas ul {
	list-style: none;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	margin: 0;
	color: #353941;
	padding: 0 0 0 20px;
	line-height: 16px;
}













/* 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 {
	border: 1px solid #f10d0d;

}

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
.textfieldFocusState input, input.textfieldFocusState {
	border: 1px solid #5e6472;
}

/* 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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}

