/* AutoSuggest
------------------------------------*/
.autosuggest, .autosuggest li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.autosuggest {		
	position: absolute;	
	background-color: #fff;
	overflow: auto;
	cursor: default;
	border: solid 1px green;
	z-index: 9999;
	font-size: 0.9em;
	width: 15em;
	line-height: 1.5em;	
	max-height: 10.5em; /* 7 items (line-height is 1.5em;) */
}
.autosuggest li {		
	padding:  0 0.2em;			
}
.autosuggest li.selected {	
	color: #fff;
	background-color: green;
}
.autosuggest li.no-results {
	color: #c00;
}
input.loading { 
	background-image: url(/images/loading.gif); 
	background-repeat: no-repeat;
	background-position: 99% 50%;
}
