<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
	- Original Author: Osvaldas Valutis, http://osvaldas.info/drop-down-navigation-responsive-and-touch-friendly
	
	- Integrator: David Klassen
	- Edits: Various edits required to merge with current page.
	         including size, text, and colors.	
	- Work:	Project DKM Mobile Menu Styling
	- File: css/menu.css
*/


@media only screen and ( max-width:479px ) /* 40em */ 
{
	#nav {
		width: 100%;
		margin: 0;
		
		position: relative;
		top: auto;
		left: auto;
						
		font-weight: 400;
		
		/* z-index is required to specify header and nav are on the top layer */
		z-index: 1;
	}
				
		#nav &gt; a	{
			width: 24px; /* 50 */
			height: 24px; /* 50 */
			text-align: left;
			text-indent: -9999px;
			background-color: black;
			position: relative;
			
			display: none;
			padding: 0px;
		}
			#nav &gt; a:before,	#nav &gt; a:after {
				position: absolute;
				border: 2px solid #fff;
				top: 35%;
				left: 25%;
				right: 25%;
				content: '';
			}
			#nav &gt; a:after {
				top: 60%;
			}

		#nav:not( :target ) &gt; a:first-of-type, #nav:target &gt; a:last-of-type
		{
			display: block;
		}

	#nav li {
		position: relative;
	}

	#nav li a {
		color: #fff;
		display: block;
	}
	
	#nav span:after {
		width: 0;
		height: 0;
		border: 0.313em solid transparent; /* 5 */
		border-bottom: none;
		border-top-color: grey;
		content: '';
		vertical-align: middle;
		display: inline-block;
		position: relative;
		right: -0.313em; /* 5 */
	}			

	/* first level */

	#nav &gt; ul {
		height: auto;
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		
		background-color: darkgrey;
	}
		#nav:target &gt; ul {
			display: block;
		}
		#nav &gt; ul &gt; li {
			width: 100%;
			float: none;
			height: 100%;
		}
			#nav &gt; ul &gt; li &gt; a {
				width: 100px;
				height: 23px;
				text-align: left;
				padding: 0.1em 0 0 1em;
			}
			#nav &gt; ul &gt; li:not( :last-child ) &gt; a {
				border-right: 1px solid white;
				border-bottom: 1px solid grey;
			}

			#nav &gt; ul &gt; li:hover &gt; a, #nav &gt; ul:not( :hover ) &gt; li.active &gt; a {
				background-color: darkgrey;
			}
			
			
		/* second level */

		#nav li ul {
			position: static;
			padding: 1.25em; /* 20 */
			padding-top: 0;
			
			background-color: darkgrey;
			display: none;					
			top: 100%;					
		}
			#nav li:hover ul {
				display: block;
				left: 0;
				right: 0;
			}
			#nav li:not( :first-child ):hover ul {
				left: -1px;
			}
			#nav li ul a {
				font-size: 1.25em; /* 20 */
				border-top: 1px solid grey;
				padding: 0.75em; /* 15 (20) */
			}
			#nav li ul li a:hover, #nav li ul:not( :hover ) li.active a {
				background-color: darkgrey;
			}				
}

@media only screen and ( min-width:480px ) /* 480 */ 
{
	#nav {
		display: none;
	}	
}
</pre></body></html>