/*!
 * 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;
	max-height: 150px;
	overflow-y: auto; 
	/* prevent horizontal scrollbar */
	overflow-x: hidden;
	border:1px solid gray;
	background-color: white;
	width: 300px;
}

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

.ui-state-focus {
	background-color:#d9edf7 ;
}


/* 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: 150px;
}
