.searchField {
    position: relative; /* jQueryUI needs this, so that z-index works, @see http://bugs.jqueryui.com/ticket/5489 */
    z-index: 2000; /* priNavContainer has 1000, we have to be above */
}

ul.ui-autocomplete {
    display: block;
    max-height: 180px;
	width: 260px;
	list-style-position: outside;
	list-style: none;
	padding: 0;
	margin: 0;
    overflow: hidden;
    overflow-y: scroll;
}

ul.ui-autocomplete li {
	margin: 0px;
	padding: 2px 5px;
	cursor: default;
	display: block;
	/* 
	if width will be 100% horizontal scrollbar will apear 
	when scroll mode will be used
	*/
	/*width: 100%;*/
	font: menu;
	font-size: 11px !important;
	/* 
	it is very important, if line-height not setted or setted 
	in relative units scroll will be broken in firefox
	*/
	line-height: 16px;
	overflow: hidden;
}

ul.ui-autocomplete li:hover {
	background-color: #F5F5F5;
	color: #000000;
}

ul.ui-autocomplete li a.ui-state-hover {
    border: inherit;
    background: inherit;
    font-weight: inherit;
    color: inherit;
}
