<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.logo1 {
	height: 115px;
    width: 263px;
    margin: 20px auto 0px auto;
    background: url(logo.png);
}

nav {
	margin: 10px auto;
	text-align: center;
}

nav ul ul {
	display: none;
}

nav ul li:hover &gt; ul {
	display: block;
}

nav ul {
	/*background: #f1f4f7;
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);*/
	padding: 0 20px;
	border-radius: 10px;
	list-style: none;
	position: relative;
	display: inline-table;
	font-size:14px;
}
nav ul:after {
	content: "";
	clear: both;
	display: block;
}

nav ul li {
	float: right;
	position: relative;
	font-weight: bold;
}

nav ul li:hover {
	background: #ed7a12;
}

nav ul li:hover a {
	color: #fff;
}

nav ul li a {
	display: block;
	padding: 10px 15px;
	color: #ed851b;
	text-decoration: none;
}

nav ul ul {
	background: #ed7a12;
	border-radius: 0px;
	padding: 0;
	position: absolute;
	top: 100%;
	right: 0;
	width: 330px;
	text-align:right;
}
nav ul ul li {
	float: none;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	position: relative;
}
nav ul ul li a {
	padding: 10px 40px;
	color: #fff;
}	
nav ul ul li a:hover {
	background: #112f44;
}
		
nav ul ul ul {
	position: absolute;
	right: 100%;
	top:0;
}
		
</pre></body></html>