.autocomplete-suggestions {
    text-align: left; 
	cursor: default; 
	border: none; 
	border-top: 0; 
	background: #fff; 
	box-shadow: -1px 1px 3px rgba(0,0,0,.1);
    position: absolute; 
	display: none; 
	z-index: 9999; 
	max-height: 260px; 
	overflow: hidden; 
	overflow-y: auto; 
	box-sizing: border-box;
}
.autocomplete-suggestion { 
	position: relative; 
	padding: .3em; 
	line-height: 32px; 
	white-space: nowrap; 
	overflow: hidden; 
	text-overflow: ellipsis; 
	font-size: 1.3em; 
	color: #333; }
.autocomplete-suggestion b { 
	font-weight: normal; 
	color: #f57c35; }
.autocomplete-suggestion.selected { 
	background: #ffebdf;
	border: none;
	cursor: pointer; 
	}
