@charset "UTF-8";

/* SpryFormValidation.css - Revision: Spry Preview Release 1.4 */


/*  textfield */
/* 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;
	color: #990000;
	/*border: 1px solid #CC0000;
	background-color:#FFFFFF;*/
	font-size:10px;
	padding:2px 0px;
	margin:10px 0px;	
}



/* 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:#D0D57E;/* #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: #ffffff;
	margin-bottom:10px;
}

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

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





/** textarea **********************************************************************************************************************************************/
/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.textareaRequiredMsg,
.textareaMinCharsMsg,
.textareaMaxCharsMsg,
.textareaValidMsg {
	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. .textareaRequiredState) 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".
 */
.textareaRequiredState .textareaRequiredMsg,
.textareaMinCharsState .textareaMinCharsMsg,
.textareaMaxCharsState .textareaMaxCharsMsg
{
	display: inline;
	color: #990000;
	/*border: 1px solid #CC0000;
	background-color:#FFFFFF;*/
	font-size:10px;
	padding:2px 0px;
	margin:10px 0px;
}

/* The next three group selectors control the way the core element (TEXTAREA) looks like when the widget is in one of the states: * focus, required / 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 TEXTAREA
 * - the widget id is placed on the TEXTAREA element itself (there are no error messages)
 */
 
 /* When the widget is in the valid state the TEXTAREA has a green background applied on it. */
.textareaValidState textarea, textarea.textareaValidState {
	background-color:#D0D57E;
}

/* When the widget is in an invalid state the TEXTAREA has a red background applied on it. */
textarea.textareaRequiredState, .textareaRequiredState textarea, 
textarea.textareaMinCharsState, .textareaMinCharsState textarea, 
textarea.textareaMaxCharsState, .textareaMaxCharsState textarea {
	background-color:#ffffff;
    margin-bottom:10px;
}

/* When the widget has received focus, the TEXTAREA has a yellow background applied on it. */
.textareaFocusState textarea, textarea.textareaFocusState {
	background-color:#ffffff;
}

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

/** END textarea **/
/* ************************************************************************************************************************************************************* */

/** select **/
/* SpryValidationSelect.css - version 0.4 - Spry Pre-Release 1.6.1 */

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

/* These are the classes applied on the messages
 * (required message and invalid state message)
 * which prevent them from being displayed by default.
 */ 
.selectRequiredMsg, .selectInvalidMsg {
	display: none;
}

/* These selectors change the way messages look when the widget is in one of the error states (required, invalid).
 * These classes set a default red border and color for the error text.
 * The state class (.selectRequiredState or .selectInvalidState) 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".
 */
.selectRequiredState .selectRequiredMsg,
.selectInvalidState .selectInvalidMsg {
	font-size:10px;
	display: inline;
	color: #990000;
	/*border: 1px solid #CC0000;
	background-color:#FFFFFF;*/
	font-size:10px;
	padding:2px 0px;
	margin:10px 0px;	
}

/* The next three group selectors control the way the core element (SELECT) looks like when the widget is in one of the states: 
 * focus, required / invalid, 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 SELECT
 * - the widget id is placed on the SELECT element itself (there are no error messages)
 */
 
/* When the widget is in the valid state the SELECT has a green background applied on it. */
.selectValidState select, select.selectValidState {
	background-color: #D0D57E;
}

/* When the widget is in an invalid state the SELECT has a red background applied on it. */
select.selectRequiredState, .selectRequiredState select,
select.selectInvalidState, .selectInvalidState select {
	background-color: #ffffff;
	margin-bottom:10px;
}

/* When the widget has received focus, the SELECT has a yellow background applied on it. */
.selectFocusState select, select.selectFocusState {
	background-color: #ffffff;
}

/** END select **/

/*********************************************************************************************************************************/

/** radio **/

/* SpryValidationRadio.css - version 0.1 - Spry Pre-Release 1.6.1 */

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


/* These are the classes applied on the messages
 * (required message and invalid value message )
 * which prevent them from being displayed by default.
 */
.radioRequiredMsg, .radioInvalidMsg{
	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 font color for the error text.
 * The state class (e.g. .radioRequiredState) 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".
 */
.radioRequiredState .radioRequiredMsg,
.radioInvalidState .radioInvalidMsg{
	display: inline;
	color: #990000;
	/*border: 1px solid #CC0000;
	background-color:#FFFFFF;*/
	padding:2px 0px;
	margin:10px 0px;
	font-size:10px;	
}
/** END radio **/
/* **************************************************************  ******************************************************************* */
/** confirm **/

/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.confirmRequiredMsg, 
.confirmInvalidMsg, 
.confirmValidMsg {
	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. .confirmRequiredState) 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".
 */
.confirmRequiredState .confirmRequiredMsg,
.confirmInvalidState .confirmInvalidMsg
{
	display: inline;
	color: #990000;
	/*border: 1px solid #CC0000;
	background-color:#FFFFFF;*/
	font-size:10px;
	padding:2px 0px;
	margin:10px 0px;
}

/* 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 , 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. */
.confirmValidState input, input.confirmValidState {
	background-color:#D0D57E;/* #B8F5B1;*/
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
input.confirmRequiredState, .confirmRequiredState input, 
input.confirmInvalidState, .confirmInvalidState input
{
	background-color: #ffffff;
	margin-bottom:10px;	
}

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


/** END **/
/** Laa Styles**/


  .pl{
        text-decoration:none;
        color:#0088FF;
        font-family:Verdana, Arial, Helvetica, sans-serif;
        font-size:10px;
		font-weight:bold;
    }
	.pl a{
        text-decoration:none;
        color:#0088FF;
        font-family:Verdana, Arial, Helvetica, sans-serif;
        font-size:10px;
		font-weight:bold;
    }

    a.pl:visited
    {
        text-decoration:none;
        color:#0088FF;
        font-family:Verdana, Arial, Helvetica, sans-serif;
        font-size:10px;
		font-weight:bold;
    }

    a.pl:hover
    {
        color:#0088FF;
        font-family:Verdana, Arial, Helvetica, sans-serif;
        font-size:10px;
		font-weight:bold;
    }

    #ps ul {
        display: inline;
        margin: 0 18px 0 18px;
        padding: 0;
    }

    #ps ul li {
        display: inline;
        vertical-align:middle;
        margin: 1px 1px 1px 2px;
        /*border: 1px solid #dee7eb;*/
        list-style: none;
        text-align:center;
        /*background-color:#f4f4f4;*/
        height:1.15em;
    }

    #ps ul li#cur{
        text-decoration:none;
        color:#FF3300;
        font-family:Verdana, Arial, Helvetica, sans-serif;
        font-size:10px;
		font-weight:bold;
        margin: 1px 1px 1px 2px;
		padding:3px 1px 3px 1px;	
        height:1.15em;			
    }
   #cur1{
        text-decoration:none;
        font-weight:bold;
        color:#CC3300;
        font-family:Verdana, Arial, Helvetica, sans-serif;
        font-size:10px;
		font-weight:bold;		
    }
    #ps  {
        white-space:nowrap;
        margin: 15px 0 15px 0;
		text-align:center;
		vertical-align:middle;
    }
	
.LAAMessage{
   text-align:left;
   margin-bottom:10px;
   color: #990000;
   font-size:10px;
}
.LAAMessage .Succes .Message{
 /*border:1px solid #AEE756;
 background-color:#E9FAD0;*/
}
.LAAMessage .Error .Message{	
	/*border: 1px solid #CC0000;
	background-color:#FFFFFF;*/
}
.LAAMessage .Succes div.Mtext{
/*
 padding:10px 5px 10px 10px;
/* background:url(images/iconSucess_32x32.gif) no-repeat left;* /
 margin:5px;
 height:auto;
	color: #525252;
	font-weight: bold;
 font-family:Helvetica,Arial, sans-serif;
 font-size:12px;
 */
}
.LAAMessage .Error div.Mtext{
/*
 padding:10px 5px 10px 10px;
 margin:5px;
 height:auto;
	color: #CC0000;
	font-weight: bold;
 font-family:Helvetica,Arial, sans-serif;
 font-size:12px;*/
}	
.LAAAjax {
  font-weight: bold;
  font-family:Helvetica,Arial, sans-serif;
  font-size:12px;
  padding:5px 2px 5px 5px;
  margin:5px;
}
 
.checkSuccess{
 color: #525252;
 border:1px solid #AEE756;
 background-color:#E9FAD0;
}

.checkError{
 color:#C60000;
 border:1px solid #FFCC00;
 background-color: #FFEFB5;
}

/** END **/
