.autocomplete-suggestions {
    text-align: left; 
    cursor: default; 
    border: 1px solid #ccc; border-top: 0; 
    background: #fff; 
    box-shadow: -1px 1px 3px rgba(0,0,0,.1);
	font-size: 11px; 

    /* core styles should not be changed */
    position: absolute; display: none; z-index: 9999; max-height: 254px; overflow: hidden; overflow-y: auto; box-sizing: border-box;
}
.ui-autocomplete-category {
	border-top: 2px solid #414141;
	margin: 10px 5px 0;
	padding: 0 0 7px;
}
.ui-autocomplete-category span.cat {
	display: block;
	height: 18px;
	margin: -10px 0;
	position: relative;
	background: #fff;
	color: #414141;
	width: 158px;
	font-weight: bold;
}

.ui-autocomplete-category span.cat-e {
	width: 85px;
}
.ui-autocomplete-category span.cat-l {
	width: 165px;
}

.ui-autocomplete-category span.cat-e:before,
.ui-autocomplete-category span.cat-l:before {
	font: normal normal normal 14px/1 FontAwesome;
	margin-right: 5px;
	width: 1.3em;
	text-align: center;
	display: inline-block;
}

.ui-autocomplete-category span.cat-e:before { content:"\f073"; }
.ui-autocomplete-category span.cat-l:before { content:"\f041"; }

.autocomplete-suggestion { 
	position: relative; 
	padding: 0 10px 0 25px; 
	text-indent: -15px;
	line-height: 20px; 
	white-space: nowrap; 
	overflow: hidden; text-overflow: ellipsis; 
	color: #414141; 
}
.autocomplete-suggestion.selected { background: #f0f0f0; }

