/*=========================================================================*/
/*										Autosuggest												*/
/*=========================================================================*/

div.autosuggest
{
	position					: absolute;
	padding					: 8px 0 0 0;
	z-index					: 999;
}


div.autosuggest ul
{
	list-style				: none;
	margin					: 0 0 -4px 0;
	padding					: 0;
	overflow					: hidden;
	border					: 1px solid #9DA5BF;
	background-color		: #FFFFFF;
   filter					: alpha(opacity=90);	/* Internet Explorer       */
   -moz-opacity			: 0.9;          	 	/* Mozilla 1.6 and below   */
   opacity					: 0.9;               /* newer Mozilla and CSS-3 */	
}

div.autosuggest ul li
{
	color						: #091F5E;
	padding					: 0;
	margin					: 0 4px 4px;
	text-align				: left;
	border-bottom			: 1px solid #9DA5BF;
}

div.autosuggest ul li a
{
	color						: #091F5E;
	display					: block;
	text-decoration		: none;
	position					: relative;
	padding					: 0;
	width						: 100%;
}
div.autosuggest ul li a:hover
{
	background-color		: #9DA5BF;
}
div.autosuggest ul li.as_highlight a:hover
{
	background-color		: #9DA5BF;
}

div.autosuggest ul li a span
{
	display					: block;
	padding					: 8px 8px;
	font-weight				: bold;
}

div.autosuggest ul li a span small
{
	font-weight				: normal;
	color						: #091F5E;
}

div.autosuggest ul li.as_highlight a span small
{
	color						: #091F5E;
}

div.autosuggest ul li.as_highlight a
{
	color						: #fff;
	background-color		: #9AA2BC;
}

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;
}

div.autosuggest ul li.as_highlight a .tr
{
	right						: 0;
}

div.autosuggest ul li.as_warning
{
	font-weight				: bold;
	text-align				: center;
}

div.autosuggest ul em
{
	font-style				: normal;
	color						: #091F5E;
}
