ul.autocomplete {
	display: none;
	position: absolute;
	top: 100%;
	width: 95%;
	left: 5%;
	background: #FFF;
	overflow: auto;
	max-height: 205px;
}
ul.autocomplete li {
	margin: 3px 0 2px;
}
ul.autocomplete li:hover {
	background: #63A0FE;
}
ul.autocomplete li:hover > a{
	color: #FFF;
}
ul.autocomplete li,
ul.autocomplete li a {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: none;
}
ul.autocomplete li a {
	text-align: left;
	display: block;
	width: 100%;
	padding: 0 10px 0 40px;
	line-height: 37px;
	/* line-height: 30px; */
	background: no-repeat 3px 50%;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	background-size: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
