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

body {
	position: relative;
}




div.autosuggest ul {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #fff;
	border: 1px solid #494949;
	width: 229px;
}

div.autosuggest ul li
{
	color: #494949;
	padding: 0;
	margin: 0px;
	text-align: left;
}

div.autosuggest ul li a
{
	color: #494949;
	display: block;
	text-decoration: none;
	background-color: transparent;
	position: relative;
	padding: 0px;
	margin: 0px;
	width: 229px;
}
div.autosuggest ul li a:hover
{
	background-color: #fff;
}
div.autosuggest ul li.as_highlight a:hover
{
	background-color: #adadad;
}

div.autosuggest ul li a span
{
	display: block;
	padding: 3px 6px;
	font-weight: normal;
}

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

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

div.autosuggest ul li.as_highlight a
{
	color: #494949;
	background-color: #adadad;
	background-position: bottom right;
	background-repeat: no-repeat;
}

div.autosuggest ul li a .tl,
div.autosuggest ul li a .tr
{
	background-image: transparent;
	background-repeat: no-repeat;
	width: 6px;
	height: 6px;
	position: absolute;
	top: 0;
	padding: 0;
	margin: 0;
}
div.autosuggest ul li a .tr
{
	right: 0;
}



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

div.autosuggest ul em
{
	font-weight: bold;
	font-style: normal;
	color: #000;
}