/**
 * jQuery.autocomplete();
 */
.auto_select_results,
.ac_results {
	padding: 0px;
	border: 1px solid black;
	background-color: white;
	overflow: hidden;
	z-index: 3001;
}
.ac_results {
	min-width: 270px;
	
}
.auto_select_results ul,
.ac_results ul {
	width: auto;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.auto_select_results li,
.ac_results li {
	margin: 0px;
	padding: 2px 5px;
	cursor: pointer;
	display: block;
	text-align:left;
	white-space:normal;
	height: 27px;
	font-weight: bold;
	border-top: 1px solid #E5E5E5;
	
	/* 
	if width will be 100% horizontal scrollbar will apear 
	when scroll mode will be used
	*/
	/*width: 100%;*/
	font: menu;
	font-size: 12px;
	/* 
	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_results .srch_general_result_last{
	background-color: #ddd;
	width: 100%;
	text-align: center;
	color: #8C8C8C;
	height: 20px;
	font-weight: bold;
	font-size: 12px;
	padding: 4px 0 0 0;
}
.ac_results .srch_general_result_last:hover{
	background-color: #8C8C8C;
	color: #ddd;
}
.ac_odd {
	background-color: #eee;
}

.auto_select_selected,
.ac_over {
	background-color: #999999;
	color: #fff; 
}

