<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.nav {
	margin: 20px auto;
	text-align: center;
}
.nav ul ul {
	display: none;
}
.nav ul li:hover &gt; ul {
	display: block;
}
.nav ul {
	list-style: none;
	position: relative;
	display: inline-table;
}
.nav ul:after {
	content: "";
	clear: both;
	display: block;
}
.nav ul li {
	float: left;
	line-height: 60px;
}
.nav ul li:hover {
	background: #005bac;
}
.nav ul li:hover a {
	color: #fff;
}
.nav ul li a {
	display: block;
	padding: 0px 20px;
	color: #757575;
	text-decoration: none;
	font-size: 14px
}
.nav ul ul {
	background: rgba(85,85,85,0.9);
	border-radius: 0px;
	padding: 0;
	position: absolute;
	top: 100%;
width: 140px;
	z-index: 999
}
.nav ul ul li {
	float: none;
	border-bottom: 1px solid #999;
	position: relative;
	line-height: 40px
}
.nav ul ul li a {
	/*padding: 0px 40px;*/
padding: 0px 20px;
	color: #fff;
}
.nav ul ul li a:hover {
	background: #4b545f;
}
.nav ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
}</pre></body></html>