@charset "UTF-8";
/* CSS Document */


/* form */
.form{
padding: 10px 5px;
background-color: #fff;
font-size: 12px;
}

div.fieldwrapper{ /*field row DIV (includes two columns- Styled label column and 'thefield' column)*/
width: 100%; /*width of form rows*/
overflow: hidden;
padding: 5px 0;
background-color: #fff;
}

div.fieldwrapper label.styled{ /* label elements that should be styled (left column within fieldwrapper DIV) */
float: left;
width: 30%; /*width of label (left column)*/
text-transform: none;
text-align: right;
color: #144262;
font-weight: normal;
border-bottom: 0px solid red;
margin-right: 10px; /*spacing with right column*/
}

div.fieldwrapper div.thefield{ /* DIV that wraps around the actual form fields (right column within fieldwrapper DIV) */
float: left;
margin-bottom: 3px; /* space following the field */
}

div.fieldwrapper div.thefieldserch{ /* DIV that wraps around the actual form fields (right column within fieldwrapper DIV) */
float: left;
margin-bottom: 3px; /* space following the field */
}

div.fieldwrapper div.thefield input[type="text"]{ /* style for INPUT type="text" fields. Has no effect in IE7 or below! */
width: 217px;
}

div.fieldwrapper div.thefield input[type="password"]{ /* style for INPUT type="text" fields. Has no effect in IE7 or below! */
width: 217px;
}
div.fieldwrapper #zipCode{ /* for zip code field */
width: 50px;
}
div.fieldwrapper #phone{ /* for form field */
width: 100px;
}


div.fieldwrapper div.thefield textarea{ /* style for TEXTAREA fields. */
width: 220px;
height: 150px;
}

div.buttonsdiv{ /*div that wraps around the submit/reset buttons*/
margin-top: 5px; /*space above buttonsdiv*/

}

div.buttonsdiv_log input{ /* style for INPUT fields within 'buttonsdiv'. Assumed to be form buttons. */
width: 90px;
height: 28px;
background: #144262;
color: #FFF;

}


div.buttonsdiv_create input{ /* style for INPUT fields within 'buttonsdiv'. Assumed to be form buttons. */
width: 140px;
height: 28px;
background: #144262;
color: #fff;
}


div.note {
	font-family: Arial;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-decoration: none;
	color: #a51529;
	text-align: left;
	padding: 5px;
	

}

/*---------end of form---------------*/

