@CHARSET "UTF-8";

.ui-autocomplete
{
    max-height: 200px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    /*padding-right: 20px; */
    font-family: Arial,Helvetica,sans-serif;
    padding: 0px 0px 0px 0px; /* top, right ,bottom, left */
    /*padding-top:0px;*/
    /*padding-bottom: 0px;*/
    /*background-color: yellow;*/
    border-bottom: 1px;
    width: 100px;
}
/* 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: 200px;
}

.ui-menu-item a.ui-corner-all
{
    display: block;
    padding: 3px 15px;
    clear: both;
    line-height: 18px;
    color: #555555;
    white-space: nowrap;
    font-size:.7em;
}

.ui-autocomplete li:hover
{
    background-color: #0088cc;
}

.ui-menu-item > a.ui-state-hover, a.ui-state-active
{
    color: #ffffff;
    text-decoration: none;
    background-color: #0088cc;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background-image: none;
}

.ui-autocomplete li a:hover
{
    text-decoration: none;
    color: #ffffff;
    background-color: #0088cc;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background-image: none;
}

ul.ui-autocomplete.ui-menu{width:400px;}
