/* theming the keyword search UI
ui-menu ui-widget ui-widget-content ui-autocomplete ui-front
ui-menu-item
ui-menu-item-wrapper
*/
.ui-autocomplete {
	max-height: 200px;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 5px;
}

.autocomplete-loading {
	position: absolute;
	z-index: 110;
	left: 0;
	top: 100%;
	text-align: center;
	background-color: #FFF;
	border: solid 1px #F0F0F0;
	width: 100%;
	padding: 1em;
}

/*
The orginial jquery UI CSS adds a transparent list-style-image with an invalid data url to fix an old IE 10 bug
We don't want this as it triggers a Content-security-violation (we disallow the data: scheme completely).
*/
.ui-menu .ui-menu-item {
	list-style-image: none;
}
