@charset "utf-8";
/* CSS Document */

/*
===================================================================================================================
Autocomplete
===================================================================================================================
	Comments:
	------------------------------------------------------------
	=> Correlated files: 
	   - fileadmin/tempplates/php_contents/indexed_search_autocomplete/
	   - fileadmin/tempplates/script/autocompleter/
*/

input.autocompleter-loading{
	background-image: url(../images/autocomplete_loader.gif);
	background-repeat:	no-repeat;
	background-position: right center;
}


ul.autocompleter-choices{
	position: absolute;
	margin:	0px;
	padding: 0px;
	list-style:	none;
	border-top: none;
	border-bottom: 1px solid #393939;
	border-right: 1px solid #393939;
	border-left: 1px solid #393939;
	background-color: #6D6D6D;
	text-align:	left;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	z-index: 200;
	width: 124px !important;
}

ul.autocompleter-choices li{
	position: relative;
	margin:	-2px 0 0 0;
	padding: 0.2em 1.5em 0.2em 3px;
	display: block;
	float: none !important; 
	cursor: pointer;
	font-weight: normal;
	white-space: nowrap;
	font-size: 11px;
	line-height: 1.5em;
	
}

ul.autocompleter-choices li.autocompleter-selected{
	background-color: #5D5D5D;
	color: #6699CC;
		
}

ul.autocompleter-choices span.autocompleter-queried{
	display: inline;
	float: none;
	font-weight: bold;
	margin: 0;
	padding: 0;
	width:100px;
}

ul.autocompleter-choices li.autocompleter-selected span.autocompleter-queried{
	color: #E3E3E3;
	
}
