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

div.autosuggest
{
	position: absolute;
	background-position: top;
	background-repeat: no-repeat;
	padding: 0;
	z-index:100;
}

div.autosuggest ul
{
	list-style: none;
	list-style-image: none;
	margin-top: 5px;
	margin-left: 0;
	padding: 0;
	overflow: hidden;
	background-color: #FFF;
  border-top: 0;
  border-left: 1px solid #444;
  border-right: 1px solid #444;
  border-bottom: 1px solid #444;
}

div.autosuggest ul li
{
	color: #000;
	padding: 0;
	text-align: left;
	list-style-image: none;
	background: none;
}

div.autosuggest ul li a
{
	color: #000;
	display: block;
	padding: 0 5px;
	line-height: 2em;
	text-decoration: none;
	background-color: transparent;
	position: relative;
	width: 100%;
	border-bottom: 0;
}

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

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

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

div.autosuggest ul em
{
	font-style: normal;
	color: #F00;
}

div.autosuggest ul li.as_highlight a
{
	color: #000;
	background-color: #e9f4fa;
}



