/*!
 * jQuery UI Autocomplete 1.10.3
 * 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: -5px;
	left: 0px;
    padding:5px 0px 0px 0px;
    max-height:100px;
    overflow-y:auto;
    overflow-x:hidden;
	

    background-color:#e3e3df;

    border:none;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;

    -webkit-box-shadow: 0px 2px 5px 0px #8C8782;
    box-shadow: 0px 2px 5px 0px #8C8782;
    cursor: default;
}
