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

body
{
	position: relative;
}


div.autosuggest
{
	position: absolute;
	/*background-image: url(img_inquisitor/as_pointer.gif); killing the pointer part*/
	background-position: top;
	background-repeat: no-repeat;
	/*padding: 10px 0 0 0; */
}

div.autosuggest div.as_header,
div.autosuggest div.as_footer
{
	position: relative;
	height: 1px;
	padding: 0 1px;
	/*background-image: url(img_inquisitor/ul_corner_tr.gif); */
	background-position: top right;
	background-repeat: no-repeat;
	overflow: hidden;
}
div.autosuggest div.as_footer
{
 /*background-image: url(img_inquisitor/ul_corner_br.gif); */
}

div.autosuggest div.as_header div.as_corner,
div.autosuggest div.as_footer div.as_corner
{
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
	width: 1px;
/*	background-image: url(img_inquisitor/ul_corner_tl.gif); */
	background-position: top left;
	background-repeat: no-repeat;
}
div.autosuggest div.as_footer div.as_corner
{
/*	background-image: url(img_inquisitor/ul_corner_bl.gif); */
}
div.autosuggest div.as_header div.as_bar,
div.autosuggest div.as_footer div.as_bar
{
	height: 1px;
	overflow: hidden;
	background-color: #fff;
}


div.autosuggest ul
{
/*background of the pop up */
	list-style: none;
	margin: 0 0 -4px 0;
	padding: 0;
	overflow: hidden;
/*	background-color: #d7f0f5;*/
	background-color: #eeeeee;
}

div.autosuggest ul li
{

	color: #404040;  /* I have the feeling this isn't being used */
	padding: 0;
	margin: 0 4px 4px;
	text-align: left;
}

div.autosuggest ul li a
{

	color: #404040;  /*this is the text of the result - not the part which you already have */
	display: block;
	text-decoration: none;
	background-color: transparent;
	position: relative;
	padding: 0;
	width: 100%;
}
div.autosuggest ul li a:hover
{
	background-color: #fff;
}
div.autosuggest ul li.as_highlight a:hover
{
	background-color: #46BDFA;  /* this is the color of the highlighted line*/
}

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

div.autosuggest ul li a span small
{
	font-weight: normal;
	color: #999;  /*this is dark text which is not highlited */
}

div.autosuggest ul li.as_highlight a span small
{
		color: #ccc;  /*this is dark text which is not highlited in the highlited row*/
}

div.autosuggest ul li.as_highlight a
{
/*this is when you select one via up and down keys*/
	color: #fff;
	background-color: #46BDFA;  /*color of the highlighted line  */
	/*background-image: url(img_inquisitor/hl_corner_br.gif);  */
	background-position: bottom right;
	background-repeat: no-repeat;
}

div.autosuggest ul li.as_highlight a span
{
	/*background-image: url(img_inquisitor/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: 1px;
	height: 1px;
	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(img_inquisitor/hl_corner_tl.gif); */
	background-position: bottom left;
}

div.autosuggest ul li.as_highlight a .tr
{
	right: 0;
	/*background-image: url(img_inquisitor/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: #73C8EC;  /*this is the color of the matching letters when not the selected item */
	
}