/*
 * Styles für den Autocompleter (Suche)
 */ 
ul.autocompleter-choices
{
	position:				absolute;
	margin:					0;
	padding:				0 0 33px 0;
	list-style:				none;
	text-align:				left;
	border-top:				1px solid #333;
	border-bottom:			0 none;
	font-family:			Verdana, Geneva, Arial, Helvetica, sans-serif;
	z-index:				0;
}

ul.autocompleter-choices li
{
	position:				relative;
	margin:					-2px 0 0 0;
	padding:				0.2em 1.5em 0.2em 1em;
	display:				block;
	background-color:		#FFF;
	border-left-color:		#333;
	border-right-color:		#333;
	border-top:				1px dotted #333;
	border-left:			1px solid #333;
	border-right:			1px solid #333;
	float:					none !important; 
	cursor:					pointer;
	font-weight:			normal;
	border-bottom: 1px dotted #333;
	font-size:				1em;
	line-height:			1.5em;
}

ul.autocompleter-choices li.autocompleter-selected
{
	background-color:		#444;
	color:					#fff;
}

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

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