/*!
 * jQuery UI Autocomplete 1.11.4
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/autocomplete/#theming
 */
.ui-autocomplete {
            margin:0;
            padding:0;
            list-style-type:none;
            border: solid 1px #ccc;
            background-color: #fff;
            width:275px;
}

.ui-autocomplete li {
            margin: 1px;
            cursor: pointer;
            display: block;
            height: 30px;
            padding: 6px 12px !important;
            font-size: 14px;
            line-height: 1.45;
}
.ui-autocomplete .ui-state-focus { 
    background-color: #0d47a1 !important; 
    color:white; }
.ui-helper-hidden-accessible { display:none; }

/*.ui-autocomplete .ui-state-focus { background-color: #66afe9; }
.ui-helper-hidden-accessible { display:none; }*/


