/* 
================================================
autosuggest style
================================================
*/

body
{
	position: relative;
}


div.autosuggest
{
	position: absolute;
	padding: 5px;
	margin-bottom:2px;
  border: 1px solid #000000;
  font-family: arial;
  background-color: #ffffff;
  font-size: 10px;
  z-index:10000;  
  height: expression( this.scrollHeight > 200 ? "200px" : "auto" ); /* sets max-height for IE */
  max-height: 200px; /* sets max-height value for all standards-compliant browsers */
  overflow:auto;
}

div.autosuggest td:hover
{
  background-color: #3366cc;
  color: #ffffff;
}

div.autosuggest td.as_highlight
{
  background-color: #3366cc;
  color: #ffffff;
}

