/* 
================================================
autosuggest, inquisitor style
================================================
*/


div.autosuggest
{
	
	position: absolute;
	width:200px;
	z-index:400;

	/* position:fixed;   firefox=oui ie=non */
	/* position:static; non */
	
	background-image: url(images/as_pointer.gif);
	background-position: top;
	background-repeat: no-repeat;

}


div.autosuggest ul
{
	list-style: none;
	
	margin-bottom:0;
	margin-top:0;
	margin-left: 0px;
	padding-left: 8px;
	margin-right:0px;
	
	padding: 0;
	overflow: hidden;
	background-color: #333;
	
}

div.autosuggest ul li
{
	color: #ccc;
	padding: 0;
	margin:0;
	
	text-align: left;
}

div.autosuggest ul li a
{
	color: #ccc;
	display: block;
	text-decoration: none;
	background-color: transparent;
	text-shadow: #000 0px 0px 5px;
	position: relative;
	padding: 0;
	cursor:hand;


}
div.autosuggest ul li a:hover
{
	background-color: #444;
}
div.autosuggest ul li.as_highlight a:hover
{
	background-color: #1B5CCD;
}

div.autosuggest ul li a span
{
	display: block;
	padding: 3px 6px;
	font-weight: bold;
}

div.autosuggest ul li a span small
{
	font-weight: normal;
	color: #999;
}

div.autosuggest ul li.as_highlight a span small
{
	color: #ccc;
}

div.autosuggest ul li.as_highlight a
{
	color: #fff;
	background-color: #1B5CCD;
	background-image: url(images/hl_corner_br.gif);
	background-position: bottom right;
	background-repeat: no-repeat;
}

div.autosuggest ul li.as_highlight a span
{
	background-image: url(images/hl_corner_bl.gif);
	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/hl_corner_tl.gif);
	background-position: bottom left;
}

div.autosuggest ul li.as_highlight a .tr
{
	right: 0;
	background-image: url(images/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-size: 90%;
	color: #9b5112;
}
