/* 
================================================
autosuggest, inquisitor style
================================================
*/

body
{
	position: relative;
}


div.autosuggest
{
    position: absolute;
	background-image: url(../images/as_pointer.gif);
	background-position: top;
	background-repeat: no-repeat;
    margin-top:-5px;
    padding: 10px 0 0 0;
    z-index: 9999 !important;

}

div.autosuggest div.as_header
{
	position: relative;
	height: 6px;
	padding: 0 6px 4px 0px;
	background-color: rgb(51,51,51);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top: -1px;
    margin-bottom:-1px;
    overflow: hidden;
    z-index: 9999 !important;

}

div.autosuggest div.as_footer
{
	position: relative;
	height: 6px;
	padding: 0 6px;
	background-color: rgb(51,51,51);   
    overflow: hidden;
    z-index: 9999 !important;
}
div.autosuggest div.as_footer
{
    z-index: 9999 !important;
}

div.autosuggest div.as_header div.as_corner,
div.autosuggest div.as_footer div.as_corner
{
	position: absolute;
	top: 0;
	left: 0;
	height: 6px;
	width: 6px;
}
div.autosuggest div.as_footer div.as_corner
{
}
div.autosuggest div.as_header div.as_bar,
div.autosuggest div.as_footer div.as_bar
{
	height: 6px;
	overflow: hidden;
	background-color: #333;
    z-index: 9999 !important;
}


div.autosuggest ul
{
	list-style: none;
	margin: 0 0 -4px 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
    z-index: 9999 !important;
}

div.autosuggest ul li
{
	color: #ccc;
	padding: 0;
	margin: 0 4px 4px;
	text-align: left;
    z-index: 9999 !important;
}

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;
	width: 100%;
    z-index: 9999 !important;
}
div.autosuggest ul li a:hover
{
	background-color: #444;
    z-index: 9999 !important;
}
div.autosuggest ul li.as_highlight a:hover
{
	background-color: #1B1B1B;
    z-index: 9999 !important;
}

div.autosuggest ul li a span
{
	display: block;
	padding: 3px 6px;
	font-weight: bold;
    z-index: 9999 !important;
}

div.autosuggest ul li a span small
{
	font-weight: normal;
	color: #999;
    z-index: 9999 !important;
}

div.autosuggest ul li.as_highlight a span small
{
	color: #ccc;
    z-index: 9999 !important;
}

div.autosuggest ul li.as_highlight a
{
	color: #fff;
	background-color: #1B1B1B;
	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;
    z-index: 9999 !important;
}
div.autosuggest ul li a .tr
{
	right: 0;
    z-index: 9999 !important;
}

div.autosuggest ul li.as_highlight a .tl
{
	left: 0;
	background-position: bottom left;
}

div.autosuggest ul li.as_highlight a .tr
{
	right: 0;
	background-position: bottom right;
}



div.autosuggest ul li.as_warning
{
	font-weight: bold;
	text-align: center;
    z-index: 9999 !important;
}

div.autosuggest ul em
{
	font-style: normal;
	color: #6EADE7;
    z-index: 9999 !important;
}