@charset "utf-8";
/* CSS Document */
body{font-family:Verdana,"Trebuchet ms", helvetica, sans-serif; font-weight:500; font-size:11px; color:#666666; margin-left:2px; margin-top:1%}
#wrapper{width:980px; height:595px; padding-top:0px;border-bottom:1px solid #0d2f88; padding-bottom:2px;}
#header{width:760px; height:230px; background-color:transparent; padding-left:20em; margin-bottom:0.5em}
#header img{float:right}
#nav{width:170px; height:auto; padding-top:0px;clear:none; font-weight:600; font-size:12px}
#content{width:760px; height:330px; padding:10px; position:absolute; top:245px; left:200px; border:1px solid #e0e0e0}
#contentoffers{height:auto;padding-left:3em; width:735px;position:absolute; top:190px; left:200px; border:1px solid #e0e0e0}
.scroll{width:400px; height:300px; /*overflow-x:hidden; overflow-y:scroll;*/ margin:10px; padding:5px; float:left}
.backdrop{width:170px; height:106px; background-image:url(../images/new/backdrop.png); background-repeat:no-repeat}


#wrapper2{width:975px; height:765px; padding-top:0px;border-bottom:1px solid #0d2f88; padding-bottom:2px;}
#content2{width:760px; height:auto; padding:10px; position:absolute; top:245px; left:200px; border:1px solid #e0e0e0;}

#right{float:right; width:auto; height:auto}
.imageblockmain{ width:700px; height:135px; clear:both; margin-left:2em}
.imagesingle{ border: 1px solid #0d2f88; padding-left:4px; clear:none; float:none} 

/*table layouts*/

.tbllogin{ border-width:1px; border-color:#ff0000; border-style:solid;}
table.results{width:750px; text-align:left; background-color:#e8e8e8; border-collapse:collapse}
tr{vertical-align:text-top; border:1px solid #999999; padding-left:2px}
table.left{float:left}
/*table layouts for logged in data to view*/
td.number{width:20px}
td.name{width:80px}
td.address{width:150px}
td.notes{width:auto}



a.small img, a.medium img, a.large img{border:none;}
ul li.space{background-color:#f0f0f0; width:150px}
li.space{padding-left:10px}

/*#loginbar{width:905px; height:15px; text-align:right;}*/
h4{font-style:italic; font-variant:small-caps; font-size:13px}
p{font-size:13px}
p.login a{color:#ffffff; font-weight:bold; background-color:#cccccc; float:left; text-decoration:none}
p.login a:hover{ background-color:#999999}
p.center{padding-left:20em}
p.center a{text-decoration:none; border-bottom:1px dotted; color:#999999}
p.center a:hover{text-decoration:none; border-bottom:1px dashed; color:#999999}
p.none a{text-decoration:none; border-bottom:1px dotted; color:#999999}
p.none a:hover{text-decoration:none; border-bottom:1px dashed; color:#999999}
.small{font-size:12px; color:#0d2f88}
.medium{font-size:16px; color:#0d2f88}
.large{font-size:20px; color:#0d2f88}
ul{padding-left:0px; margin-left:0px; list-style-type:none}
li a{text-decoration:none}
ul.navigation li a{display:block; border-bottom:1px solid #e0e0e0; background-color:transparent; list-style-type:none; margin-left:0px; padding-left:10px; width:150px; height:20px; padding-top:5px; color:#333333}

ul.navigation li a:hover{display:block; background-color:#f0f0f0;}

/* FORM LIST SETTINGS */
form.left{width:38em; float:left; border-right:1px solid #e0e0e0}
li.label, li.inputted{margin-bottom:0.5em}
ul.forms li.label{float:left; width:9em; text-align:right; clear:left; margin-right:.5em; background-color:#e8e8e8; height:1.6em; margin-bottom:0.2em}




/*input form styles*/

input, textarea{padding-bottom:0; font-family:Verdana,"Trebuchet ms", helvetica, sans-serif; font-weight:500; font-size:105%; color:#333333}



/* 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: #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: #0d2f88;
	color:#FFFFFF;
}

/* 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;
	color:#0d2f88;
}

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

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