/*
================================================
autosuggest, inquisitor style
================================================
*/

div.autosuggest
{
	position: absolute;
}

div.autosuggest ul
{
	list-style: none;
	overflow: hidden;
	background-color: #b3bf97;
	padding:5px;
	border:1px solid #919972;
	width:400px;
	font-size:12px
}

div.autosuggest ul li
{
	text-align:left;
}

div.autosuggest ul li a
{
	color: #3A3939;
	display: block;
	text-decoration: none;
	position: relative;
	width:400px;
}
div.autosuggest ul li a:hover
{
	background-color: #CCCCCC;
}
div.autosuggest ul li.as_highlight a:hover
{
	background-color: #EBEBEB;
}

div.autosuggest ul li a span
{
	display: block;
}

div.autosuggest ul li a span small
{
	font-weight: normal;
	color: #999;
}

div.autosuggest ul li.as_highlight a span small
{
	color: #999;
}

div.autosuggest ul li.as_highlight a
{
	color: #000000;
	background-color: #CCCCCC;
}

div.autosuggest ul li.as_warning
{
	font-weight: bold;
	text-align: center;
}

div.autosuggest ul em
{
	font-style: normal;
	color: #d3031a;
	text-weight:bolder;
}