/******************************************************************************/
/*                                                                            */
/* CSS for autocomplete feature from js/jquery.autocomplete.js                */
/*                                                                            */
/******************************************************************************/

.ac_results 
{
	padding: 0px;
	border: 1px solid WindowFrame;
	background-color: Window;
	max-height: 300px;
	z-index:1;
}
.ac_results>div.scrollbar
{
	position:absolute;
	right:0px;
	height:100%;
	background-color:white;
	border-left:1px solid #c6c6c6;
	width:16px;
}

.ac_results>div.scrollbar>div.caret
{
	position:absolute;
	right:0px;
	height:50%;
	background-color:#e6e6e6;
	border-top:1px solid #c6c6c6;
	border-bottom:1px solid #c6c6c6;
	width:15px;
}

.ac_results + span
{
	padding-left: 10px;
	color:red;
}

.ac_results ul {
	width: 100%;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 240px;
	overflow-y: auto;
}

.ac_results iframe 
{
	display:none;
	display:block;
	position:absolute;
	top:0;
	left:0;
	z-index:-1;
	width:3000px;
	height:3000px;
}

.ac_results li {
	margin: 0px;
	padding: 2px 5px;
	cursor: pointer;
	display: block;
	width: 100%;
	overflow: hidden;
	border-bottom:1px solid grey;
}

.ac_results li:nth-child(even) 
{
	background-color: #FAFAFA;
}
.ac_results li:nth-child(odd) 
{
	background-color: #F2F2F2;
	
}
.ac_arrow 
{
	cursor:pointer;
	background : url('../img/Arrow-Down-16.png') right center no-repeat;
}

.ac_loading 
{
	background : url('../img/indicator.gif') right center no-repeat;
}
.ac_over 
{
	background-color: Highlight!important;
	color: HighlightText;
}

