/* 
================================================
autosuggest, inquisitor style
================================================
*/

body
{
	position: relative;
}


div.autosuggest
{
	position: absolute;
	background-position: top;
	background-repeat: no-repeat;
	margin-top:0px;
	z-index:1;
}


div.autosuggest ul
{
	list-style: none;
	padding: 0;
	margin-top:5px;
	margin-left:0px;
	overflow: hidden;
	background-color: #ffffff;
	border: 1px solid #dedddb;
}

.ie8 div.autosuggest ul
{
	margin-left:-1px;    
}

div.autosuggest ul li
{
	color: #ccc;
	padding: 0;
	margin: 0;
	text-align: left;
}

div.autosuggest ul li a
{
	color: #000000;
	display: block;
	text-decoration: none;
	background-color: transparent;
	position: relative;
	padding: 0;
	width: 100%;
}

/*testing
div.autosuggest ul li:hover ul
{
	color: #000000;
	display: block;
	text-decoration: none;
	background-color: transparent;
	position: relative;
	padding: 0;
	width: 100%;
}*/

div.autosuggest ul li a:hover
{
	background-color: #dedddb;
}
div.autosuggest ul li.as_highlight a:hover
{
	background-color: #dedddb;
}

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: #000000;
}

div.autosuggest ul li.as_highlight a span small
{
	color: #000000;
}

div.autosuggest ul li.as_highlight a
{
	color: #000000;
	background-color: #f1f1f2;
	background-position: bottom right;
	background-repeat: no-repeat;
}

div.autosuggest ul li.as_highlight a span
{
	background-position: bottom left;
	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_highlight a .tl
{
	left: 0;
	background-image: url(/images/autocomplete/hl_corner_tl.gif);
	background-position: bottom left;
}

div.autosuggest ul li.as_highlight a .tr
{
	right: 0;
	background-image: url(/images/autocomplete/hl_corner_tr.gif);
	background-position: bottom right;
}



div.autosuggest ul li.as_warning
{
	font-weight: bold;
	text-align: center;
}

div.autosuggest ul em
{
	font-style: normal;
	color: #002596;
}