/* 
================================================
autosuggest, inquisitor style
================================================
*/

div.autosuggest
{ 
	position: fixed;
	padding: 0px 0 0 0;
	margin:5px 0px 0px -24px !important;
	padding-bottom:4px;
	z-index:1000;
	border:#ccc 1px solid;
	border-top:none;
	-webkit-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;

}

/* mozilla positioning */

html>body div.autosuggest {
	margin-top:5px;	
}

/* IE 7 positioning */

*:first-child+html div.autosuggest {
	margin-top:4px;
}

div.autosuggest ul
{
	list-style: disc;
	margin: 0 0 -4px 0;
	padding: 0;
	overflow: hidden;
	background-color: #fff;
}

div.autosuggest ul li
{
	color: #666;
	padding: 0;
	margin: 0 4px 4px;
	text-align: left;
}

div.autosuggest ul li a
{
	color: #666;
	display: block;
	text-decoration: none;
	background-color: transparent;
	position: relative;
	padding: 0;
	width: 100%;
	font-size:12px;
}
div.autosuggest ul li a:hover, 
div.autosuggest ul li.as_highlight a:hover
{
	background-color: #5985a8;
}

div.autosuggest ul li a span
{
	display: block;
	padding: 3px 6px 3px 10px;
	font-weight: bold;
}

div.autosuggest ul li.westsuggestAll a span, div.autosuggest ul li.westsuggestAllHover a span
{
	padding-left:2px;	
}

div.autosuggest ul li a span small
{
	font-size:1em;
	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: #5985a8;

}

div.autosuggest ul li.as_warning
{
	font-weight: normal;
	color:#A37C5F;
	font-size:14px;
	padding:5px 0px 5px 5px;
}

div.autosuggest ul em
{
	font-style: normal;
}

.westsuggestTitle { 
	background:#fff; 
	padding:5px 0px 5px 7px; 
	color:#A37C5F; 
	font-size:14px;
}

.westsuggestAll span, 
.westsuggestAllHover span 
{ 
	font-size:13px; 
	font-weight:bold; 
	background:#fff; 
	padding:0px 10px 5px 0px; 
	color:#333; 
	text-align:left;
}

.westsuggestAll span a { 
	text-decoration:none; 
	color:#333; 
	font-size:13px; 
}

.westsuggestAll span a:hover { 
	text-decoration:none; 
	color:black; 
}

.westsuggestAllHover span { 
	background-color: #5985a8; 
	color:white;
}

.westsuggestAll span img, .westsuggestAllHover span img { 
	vertical-align:middle; 
}

div.autosuggest ul li.westsuggestAll { 
	padding-left:3px; 
}

div.autosuggest ul li.westsuggestAllHover a span { 
	padding-left:5px; 
}

div.autosuggest ul li.westsuggestAll, div.autosuggest ul li.westsuggestAllHover { 
	padding-bottom:5px; 
}

html>body div.autosuggest ul li.westsuggestAll, html>body div.autosuggest ul li.westsuggestAllHover {
	padding-bottom:0px;
}