/*!
 * jquery.autocomplete.js
 * Copyright (c) Dylan Verheul <dylan.verheul@gmail.com>
 * MIT license
 * http://code.google.com/p/jquery-autocomplete/
 */
.acResults {
	width: auto !important;
	padding: 5px;
	border: 1px solid WindowFrame;
    background-color: #ffffff;
	overflow: auto;
	z-index: 1200;
	max-height: 240px;
}

.acResults ul {
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
}

.acResults li {
	margin: 0px;
	padding: 2px 5px;
	cursor: pointer;
	display: block;
	font: menu;
	font-size: 12px;
	overflow: hidden;
}

.acResults li .small {
	color: #B0B0B0;
	font-size: 10px;
}

.acLoading {
	background : url('/images/indicator.gif') right center no-repeat;
}

.acSelect {
	/*background-color: Highlight;*/
    background-color: #444;
	color: HighlightText;
}
