/**
 * @fileOverview CSS for jquery-autocomplete, the jQuery Autocompleter
 * @author <a href="mailto:dylan@dyve.net">Dylan Verheul</a>
 * @license MIT | GPL | Apache 2.0, see LICENSE.txt
 * @see https://github.com/dyve/jquery-autocomplete
 */
.acResults {
	padding: 0px;
	border: 1px solid #ccc;
	background-color: Window;
	overflow: auto;
	
	max-height: 300px;
}

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

.acResults ul li {
	margin: 0px;
	padding: 7px 10px;
	cursor: pointer;
	display: block;
	/*font: menu;*/
	font-size: 12px;
	overflow: hidden;
	border-bottom: 1px solid #e0e4e7;
}

.acLoading {
	background : url('../../img/ajax_loading.gif') right center no-repeat;
	background-size: contain;
}

.acSelect {
	background-color: #00ccff;
	color: HighlightText;
}
