#search::-ms-clear { display: none; }
/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99 !important;
  overflow:hidden;
  max-height:150px;
  width:138px;
  overflow-y: auto;
  border: 1px solid #eeeeee;
}

.autocomplete-items div {
  cursor: default;
  background-color: #fff; 
  line-height:1.2;
  font-family: Helvetica, Verdana, Geneva, Arial, sans-serif;
	font-size:12px;
	color: #808285;
	padding: .3em .4em;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
	 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  border: 1px solid #cdd5da; 
	 background: #f6f6f6 url(images/ui-bg_highlight-hard_100_f6f6f6_1x100.png) 50% 50% repeat-x !important; 
	 font-weight: bold; 	
}