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

body
{
	position: relative;
}


div.autosuggest
{
	color: white;
	background-color: #1b1b1b;
	position: absolute;
	z-index: 1000;
	padding: 5px 5px 5px 5px;
	width: 200px;
}




div.autosuggest ul
{
	position: relative;
	list-style: none;
	padding: 0px 10px 10px 0px;
	background-color: #1b1b1b;
}

div.autosuggest ul li
{
	position: relative;
	overflow: hidden;
	color: #ccc;
	padding-bottom: 5px;
	text-align: left;
	width: 100%;
}

div.autosuggest ul li a
{
	color: #ccc;
	display: block;
	text-decoration: none;
	background-color: transparent;
	position: relative;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

div.autosuggest ul li a:hover
{
	background-color: #487148;
}

div.autosuggest ul li.as_highlight a:hover
{
	background-color: #1B5CCD;
}

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


