﻿
/* AUTOCOMPLETE RESULTS */

.ac_results {
	padding: 0px;
	margin: -6px 0 0 0;
	border: 1px solid #bcb9b7;
	background-color: #ffffff;
	overflow: hidden;
	z-index: 99999;
	width: 298px !important;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.ac_results ul {
	width: 298px;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ac_results li {
	margin: 0px;
	padding: 3px 10px;
	cursor: pointer;
	display: block;
	/* 
	if width will be 100% horizontal scrollbar will apear 
	when scroll mode will be used
	*/
	/*width: 100%;*/
	font: Arial;
	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: 22px;
	height: 22px;
	color: #303030;
	font-weight: bold;
	overflow: hidden;
	border-bottom: solid 1px #bcb9b7;
}

.ac_loading {
	background: #ffffff url(../images/ajax-loader.gif) right center no-repeat;
}

.ac_odd {
	background-color: #fff;
}

.ac_over {
	background-color: #f2eded;
	color: #303030 !important;
}

