/* 
================================================
This work is published under a Creative Commons License
For further details, see: 
http://creativecommons.org/licenses/by-sa/2.5/
Original work from: 
Timothy Groves - http://www.brandspankingnew.net

autosuggest styles, TDS style
version 1.0, modified by Fabrice Pasquier, Ventek International, Switzerland
================================================
*/

body
{
	position: relative;
}

#errormessage .errormessagetext, #errormessage2 .errormessagetext {
    color: red; 
    width: 100%; 
    background-color: white; 
    border: 0px none white;

}

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

/* bottom and top bars */
div.autosuggest div.as_header,
div.autosuggest div.as_footer
{
	position: relative;
	height: 4px;
	padding: 0 4px;
	background-color: #a8d3fe;
	overflow: hidden;
	
}
/* corner*/
div.autosuggest div.as_footer
{
	background-color: #a8d3fe;
}

/* corner*/
div.autosuggest div.as_header div.as_corner,
div.autosuggest div.as_footer div.as_corner
{
	position: absolute;
	top: 0;
	left: 0;
	height: 4px;
	width: 4px;
	background-color: #a8d3fe;
}
div.autosuggest div.as_footer div.as_corner
{
	
}
/* corner*/
div.autosuggest div.as_header div.as_bar,
div.autosuggest div.as_footer div.as_bar
{
	height: 4px;
	overflow: hidden;
	background-color: #a8d3fe;
}

/* main box background color (gray) */
div.autosuggest ul
{
	list-style: none;
	margin: 0 0 -4px 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
}

div.autosuggest ul li
{
	padding: 0;
	margin: 0 4px 4px;
	text-align: left;
	text-transform: capitalize;
	font-size: 12px;
}

div.autosuggest ul li a
{
  text-decoration: none;	
	color: #ccc;
	display: block;
	background-color: transparent;
	text-shadow: #000 0px 0px 5px;
	position: relative;
	padding: 0;
	width: 100%;
 
}

/* color of last item pointed by the mouse */
div.autosuggest ul li a:hover span
{
	color: white;
}

/* hover color (when mouse highlight) */
div.autosuggest ul li.as_highlight a:hover
{
	background-color: #2a426c;

}

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

div.autosuggest ul li a span small
{
	font-weight: normal;
	color: #999;
}

div.autosuggest ul li.as_highlight a span small
{ 
	color: #ccc;
}

/* key hover color (when up / down keys highlight) */
div.autosuggest ul li.as_highlight a
{
	background-color: #2a426c;
	background-image: url(img_inquisitor/tds_corner_br.gif);
	background-position: bottom right;
	background-repeat: no-repeat;
	text-decoration: none;
}

div.autosuggest ul li.as_highlight a span
{
	background-image: url(img_inquisitor/tds_corner_bl.gif);
	background-position: bottom left;
	background-repeat: no-repeat;
	color: white;
}

div.autosuggest ul li a .tl,
div.autosuggest ul li a .tr
{
	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(img_inquisitor/tds_corner_tl.gif);
	background-position: bottom left;
}

div.autosuggest ul li.as_highlight a .tr
{
	right: 0;
	background-image: url(img_inquisitor/tds_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: #6EADE7;

}