﻿.AutoCompletePanel
{
	font-size: 10px;
	border: solid 1px lightskyblue;
	margin-top: 2px;
	display: none;
	position: absolute;
	background-color: #FEFEFE;
	padding: 2px;
	z-index: 15000;
	height:200px;
	overflow:hidden;
	top:0px;
}
.AutoCompletePanel TABLE
{
	width: 100%;
}
.AutoCompletePanel TABLE TR
{
	cursor: default;
}
.AutoCompletePanel TABLE TR.Selected
{
	background-color: LightSkyBlue;
}
.AutoCompletePanel TABLE TD
{
	text-align: left;
}


  .ui-autocomplete {
    max-height: 150px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    z-index:100000;
  }
  /* IE 6 doesn't support max-height
   * we use height instead, but this forces the menu to always be this tall
   */
  * html .ui-autocomplete {
    height: 150px;
  }
   .ui-autocomplete-loading {
    background: url("/images/ui-anim_basic_16x16.gif") right center no-repeat;
  }