/* FORM STYLES */
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	font-family: Arial, Helvetica, sans-serif;
	color: #454D85;
	font-size: 12px;
	margin: 0;
	padding: 0;
	width: 450px; 
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 100px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width: auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin: 5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
	border: 1px solid #E1E3E3;
}

form input:focus, form textarea:focus {
	background-color: #F0F7FF;
	color: #333333;
}

form input#reset {
	margin-left: 0px; /* set margin-left back to zero on reset button (set above) */
}

textarea {
	overflow: auto;
}

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 11px;
}

form .required{
	font-weight: bold;
	}

form br {
	clear: left;
}

form .input_btn {
	background-color: #232357;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	font-weight: bold;
	padding: 5px;
	cursor: pointer;
}

form .input_btn:hover {
	background-color: #9C9EA1;
}

.message {
	height: auto;
	width: 400px;
	padding: 5px 10px 5px 10px;
	background-color: #F0F7FF;
	text-align: left;
	font-size: 12px;
	display: none;
}

div.special {
	display: none;
}

/* AUTOCOMPLETE STYLES */
.ac_results {
	padding: 0px;
	border: 2px solid #9C9EA1;
	background: #9C9EA1;
	color: #FFFFFF; 
	overflow: hidden;
	z-index: 99999;
}

.ac_results ul {
	width: 100%;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ac_results li {
	margin: 0px;
	padding: 2px 5px;
	cursor: pointer;
	display: block;
	/* 
	if width will be 100% horizontal scrollbar will apear 
	when scroll mode will be used
	*/
	/*width: 100%;*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	/* 
	it is very important, if line-height not setted or setted 
	in relative units scroll will be broken in firefox
	*/
	line-height: 16px;
	overflow: hidden;
}

.ac_loading {
	background: white url('indicator.gif') right center no-repeat;
}

.ac_odd {
	background-color: #9C9EA1;
}

.ac_over {
	background-color: #232357;
	color: #FFFFFF;
}
