/**
*  Ajax Autocomplete for jQuery, version 1.2.7
*  (c) 2013 Tomas Kirda
*
*  Ajax Autocomplete for jQuery is freely distributable under the terms of an MIT-style license.
*  For details, see the web site: http://www.devbridge.com/projects/autocomplete/jquery/
*
*/

.autocomplete-suggestions {
    border: 1px solid #2F9EC2;
    background: #f8f8f8;
    overflow-y: scroll;
    font-size: 100%;
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding-left: 10px;
    opacity: .95;
}
.autocomplete-suggestion {
    padding: 3px 7px;
    white-space: nowrap;
    cursor:pointer;
}
.autocomplete-selected {
    background: #F0F0F0;
}
.autocomplete-suggestions strong {
    font-weight: bold;
    color: #2F9EC2;
}