﻿/*!
 * jQuery UI Autocomplete 1.10.0
 * http://jqueryui.com
 *
 * Copyright 2013 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Autocomplete#theming
 */
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}

#search_loader {
    background-image: url('../images/ajax-loader_small_white.gif');
    background-position: 50% 50%;
    position: absolute;
    left: 16%;
    top: 4px;
    background-repeat: no-repeat;
    height: 19px;
    z-index: 200000000;
    width: 50px;
}

.ui-autocomplete-loader{
	background-image: url('../images/ajax-loader-small.gif');
    background-position: 50% 50%;

    position: absolute;
    right: 16%;
    bottom: 4px;
    background-repeat: no-repeat;
    height: 19px;
    z-index: 200000000;
    width: 50px;

}

.navbar .search .ui-autocomplete {
            max-height: 250px;
           /* overflow-y: auto;*/
            /* prevent horizontal scrollbar */
            overflow-x: hidden;
            /* add padding to account for vertical scrollbar */
            padding-right: 0px;
            background: #318DDE;
    }

.ui-autocomplete {
           /* max-height: 100px;
            overflow-y: auto;*/
            /* prevent horizontal scrollbar */
            overflow-x: hidden;
            /* add padding to account for vertical scrollbar */
            padding-right: 20px;
    }
    /* 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: 100px;
    }
    
    
    