/*!
 * 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;
	background-color: white;
	border: 1px solid #708090;
	z-index: 100;
	width: 280px;
	-webkit-box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.75);
}

.ui-autocomplete li {
    font-family: Arial, Verdana, Sans-Serif;
    margin: 1px;
    cursor: pointer;
    display: block;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #696969;
}

.ui-autocomplete li:hover{
	background-color: #66afe9;
	color: white;
}

// to distinctly see which returned item is selected/hovered over
.ui-autocomplete .ui-state-focus { background-color: #66afe9; } 

// to hide the lower left text
.ui-helper-hidden-accessible { display:none; }