@charset "UTF-8";

/* SpryValidationTextField.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
.textfield{
	border:1px solid #ccc19c;
	background:#FFF;
	color:#4b6b89;
	padding:6px;
	width:318px;
	margin:0px 8px 8px 0px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	outline:none;
}
.textfieldRequired{
	border:1px solid #ccc19c;
	background: url(../templates/lakewood/images/validate.png) no-repeat top right #FFF;
	color:#4b6b89;
	padding:6px;
	width:318px;
	margin:0px 8px 8px 0px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	outline:none;
}

/* 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: #e8f0bb;
	background-position:right -30px;
	border:1px solid #a6b717;
	color:#6f8621;
}

/* When the widget is in an invalid format state the INPUT has a yellow background applied on it. */
input.textfieldInvalidFormatState, .textfieldInvalidFormatState input{
	background-color: #fffce1;
	background-position:right -90px;
	border:1px solid #d5c04c;
	color:#876900;
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
input.textfieldRequiredState, .textfieldRequiredState input, 
input.textfieldMinValueState, .textfieldMinValueState input, 
input.textfieldMaxValueState, .textfieldMaxValueState input, 
input.textfieldMinCharsState, .textfieldMinCharsState input, 
input.textfieldMaxCharsState, .textfieldMaxCharsState input {
	background-color: #f0dcdc;
	background-position:right -60px;
	border:1px solid #dea6a6;
	color:#8b4040;
}

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
.textfieldFocusState input, input.textfieldFocusState {}

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

/* When the widget has the hint message on, the hint text can be styled differently than the user typed text. */
.textfieldHintState input, input.textfieldHintState {}

