/*!
 * jQuery UI Autocomplete 1.10.4
 * http://jqueryui.com
 *
 * Copyright 2014 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/autocomplete/#theming
 */
 
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
    background: none repeat scroll 0 0 #fff;
    border: 1px solid black;
    height: 150px;
    list-style: outside none none;
    margin: 0;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    width: 120px;
}
.ui-autocomplete li {
    cursor: default;
    display: block;
    font: ;
    line-height: 16px;
    margin: 0;
    overflow: hidden;
    padding-left: 0;
}
.ui-autocomplete li:hover {
    background: none repeat scroll 0 0 #0a246a;
}
.ui-autocomplete li:hover a {
    background: none repeat scroll 0 0 #0a246a;
    color: #fff;
}
.ui-autocomplete li:hover a strong {
    background: none repeat scroll 0 0 #0a246a;
    color: #fff;
}
.ui-autocomplete li a {
    background: none repeat scroll 0 0 #fff;
    border: 0 none;
    color: #000;
    cursor: default;
    float: left;
    text-decoration: none;
    width: 100%;
}
.ui-autocomplete li a:hover {
    background: none repeat scroll 0 0 #0a246a;
    color: #fff;
}
.ui-autocomplete li a:hover strong {
    background: none repeat scroll 0 0 #0a246a;
    color: #fff;
}

/* custom */

.ui-helper-hidden-accessible{
	display:none;
}