/*
 * jQuery UI Autocomplete 1.8.17
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Autocomplete#theming
 */
.ui-autocomplete
{
    cursor: default;
    position: absolute;
}

/* workarounds */

* html .ui-autocomplete
{
    width: 1px;
}

/* without this, the menu expands to 100% in IE6 */

/*
 * jQuery UI Menu 1.8.17
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */

.ui-menu
{
    background-color: white;
    border-color: #D0D0D0 !important;
    border-radius: 0 !important;
    border-style: solid;
    border-width: 0 1px 1px !important;
    box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.1);
    display: block;
    float: left;
    font-family: Tahoma !important;
    list-style: none;
    margin: 1px 0 0 0;
    max-height: 300px;
    overflow-y: auto;
    padding: 0;
    z-index: 10000 !important;
}

.ui-menu.ui-autocomplete_position-top
{
    border-width: 1px 1px 0 !important;
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.ui-menu .ui-menu
{
    margin-top: -3px;
}

.ui-menu .ui-menu-item
{
    clear: left;
    float: left;
    margin: 0;
    padding: 0;
    width: 100%;
    zoom: 1;
}

.ui-menu .ui-menu-item a
{
    border: none;
    border-radius: 0;
    border-top: 1px solid #EAEAEA;
    display: block;
    text-decoration: none;
    zoom: 1;
}

.ui-menu .ui-menu-item a.ui-state-hover,
.ui-menu .ui-menu-item a.ui-state-active
{
    background: #F0F0F0;
    font-weight: normal;
}
