<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* Remove margins and padding from the list, and add a black background color */
ul.topnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height:40 px;
    line-height: 20px;
    /*position: absolute;*/
    overflow: hidden;
    background-color: #333;
    text-align: center;
}

/* Float the list items side by side */
ul.topnav li {
    display: inline-block;
    margin-right: 1px;
}

/* Style the links inside the list items */
ul.topnav li a {
    display: inline-block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change background color of links on hover */
ul.topnav li a:hover, ul.topnav li a:focus {
	background-color: #555;
	transition: background-color 0.3s;
}


/*Hover state for dropdown links*/
li:hover ul a:hover, li:focus ul a:hover, li:hover ul a:focus, li:focus ul a:focus {
	background: #555;
	color: #f2f2f2;
}

/*Hide dropdown links until they are needed*/
ul.topnav li ul {
	background: #333;
	display: none;
	position: absolute;
	z-index: 15;
	padding: 0px;
}

/*Make dropdown links vertical*/
ul.topnav li ul li {
	display: block;
	float: none;
	padding: 0px;
	margin: 0px;
}

/*Prevent text wrapping*/
li ul li a {
	width: 100%;
	min-width: 100px;
	padding: 0;
}

/* Hide the list item that contains the link that should open and close the topnav on small screens */
ul.topnav li.icon {display: none;}

ul.topnav li a.current {
	background-color: #F0F0F0;
	color: #000000;
}

ul.topnav label.current {
	background-color: #F0F0F0;
	color: #000000;
}


/*Style 'show menu' label button and hide it by default*/
.show-menu {
	text-decoration: none;
	color: #fff;
	background: #333;
	text-align: center;
	padding: 10px 0;
	display: none;
}

.show-sub-menu {
	text-decoration: none;
	color: #fff;
	background: #333;
	text-align: center;
	padding: 10px 0;
	display: none;
}


/*Hide checkbox*/
input.menuCheck{
    display: none;
}


/*Hide checkbox*/
input.subMenuCheck{
    display: none;
}


/*Show menu when invisible checkbox is checked*/
input.menuCheck:checked ~ #myTopnav{
    display: block;
}

input.subMenuCheck:checked ~ a ~ .hidden-nav {
    display: block;
}


@media screen and (min-width:40rem) {

	/*Display the dropdown on hover*/
	ul li a:hover + .hidden-nav, .hidden-nav:hover,  ul li a:focus + .hidden-nav, .hidden.nav:focus {
		display: block;
	}

	/*Style for dropdown links*/
	li:hover ul a, li:focus ul a {
		background: #333;
		color: #f2f2f2;
		/*height: 50px;*/
		/*line-height: 40px;*/
	}


}

 /* When the screen is less than 680 pixels wide, hide all list items, except for the first one ("Home"). Show the list item that contains the link to open and close the topnav (li.icon) */
@media screen and (max-width:40rem) {
	/*Make dropdown links appear inline*/
	ul.topnav {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	ul.topnav li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	ul li, li a, ul.topnav li ul li a {
		width: 100%;
	}
	ul.topnav li ul {
		width: 100%;
		position: relative;
	}
	ul.topnav li ul li, ul.topnav li a:hover + .hidden-nav, .hidden-nav:hover,  ul.topnav li a:focus + .hidden-nav, .hidden.nav:focus {
		background: #202020;
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
	.show-sub-menu {
		display:block;
	}
	a.topmenu {
		display:none !important;
	}
}


</pre></body></html>