.autocomplete_search_results::after {
	content: '\00a0';
	display: block;
	position: absolute;
	top: -8px;
	left: 10px;
	width: 16px;
	height: 16px;
	background: #fff;
	box-shadow: -1px -2px 2px rgba(0,0,0,.1);
	-webkit-box-shadow: -1px -2px 2px rgba(0,0,0,.1);
	-moz-box-shadow: -1px -2px 2px rgba(0,0,0,.1);
	transform: rotate( 45deg );
	-moz-transform: rotate( 45deg );
	-webkit-transform: rotate( 45deg );
}

.autocomplete_search_results {
	display: inline-block;
	position: absolute;
	background: #fff;
	box-shadow: 1px 1px 5px rgba(0,0,0,.8);
	-webkit-box-shadow: 1px 1px 5px rgba(0,0,0,.8);
	-moz-box-shadow: 1px 1px 5px rgba(0,0,0,.8);
	padding: 4px 4px 0 4px;
	margin-top: 10px;
	z-index: 16000;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
.autocomplete_search_elements {
	padding: 0;
	margin: 0;
	list-style: none;
	z-index: 17000;
	position: relative;
}
.autocomplete_search_element {

	padding: 4px;
	margin: 0 0 4px 0;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	background: #dde3eb;
	transition: all 0.1s ease-in-out;
	cursor: pointer;
}
.autocomplete_search_element_selected {
	background: #c7ccd3;
	transition: all 0.1s ease-in-out;
}
.autocomplete_search_error_message {
	background: #ed174c;
	color: #fff;
	padding: 4px;
	margin-bottom: 4px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
.autocomplete_search_category_title {
	padding: 4px;
	margin: 0 0 4px 0;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	background: #cbcbcb;
}
.autocomplete_loading_image {
	z-index: 15000;
	background: #fff url("/js/plugins/jquery.autocomplete/autocomplete.gif") no-repeat;
	width: 16px;
	height: 16px;
	position: absolute;
}