<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*HINT: jquery-ui-1.8.24/development-bundle/demos/index.html#autocomplete|categories*/
.ui-autocomplete-category {
	padding: 4px 10px;
	margin: 5px 0 3px 0;
	line-height: 1.5;
	float: left;
	width: 100%;
	color: white;
	text-shadow: 0 1px 1px rgba(0,0,0,.4);
	font: bold 120%/1.3 Bitter, Gudea, serif;
}

.ui-autocomplete-category:first-child {
	margin-top: 0px;
}

.ui-autocomplete {
	max-height: 400px;
	width: 350px;
	overflow-y: auto;
	/* prevent horizontal scrollbar */
	overflow-x: hidden;
	/* add padding to account for vertical scrollbar */
	padding-right: 20px;
}
/* IE 6 doesn't support max-height
 * we use height instead, but this forces the menu to always be this tall
 */
* html .ui-autocomplete {
	height: 400px;
}

.ui-autocomplete-result-current {
	margin-top: 10px;
	border-top: 1px solid;
	padding-top: 2px;
}

.ui-widget {
	font-family: inherit;
}

.ui-widget-content {
	background: #fff;
}

.ui-menu {
	padding: 0;
	box-shadow: 2px 3px 10px rgba(0,0,0,.3);
}

.ui-menu .ui-menu-item {
	cursor: pointer;
	margin: 0 5px;
	width: auto;
	float: none;
}

.ui-state-hover {
	background: #263C81 !important;
	color: white !important;
	border: none !important;
	font-weight: bold !important;
	margin: 0 !important;
}

#mw-head .suggestions {
	display: none !important; /* Hide the default MediaWiki search suggestion */
}
</pre></body></html>