<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
		#nav
		{
			width: 80%; 
			font-family: 'Open Sans', sans-serif;
			font-weight: 400;
			font-size:14px;
			top: 0px;
			margin: 0 auto;

		}

			#nav &gt; a
			{
				display: none;
			}

			#nav li
			{
				position: relative;
				z-index:5; /* must change this to put the nav in front */
			}
				#nav li a
				{
					color: #000;
					display: block;
				}
				#nav li a:active
				{
					background-color: #CCC !important; /* changes bg color when clicking */
				}

			/* this changes the dropdown arrow */
			#nav span:after
			{
				width: 0;
				height: 0;
				border: 0.313em solid transparent; /* 5 */
				border-bottom: none;
				border-top-color: #CCC; /*color of the arrow */
				content: '';
				vertical-align: middle;
				display: inline-block;
				position: relative;
				right: -10px; /* 5 */
			}

			/* ************TOP LEVEL NAV***************** */

			#nav &gt; ul
			{
				height: 40px; 
				background-color: #FFF;
				border-top: #990000 solid thin;
				border-bottom: #990000 solid medium;
			}
				#nav &gt; ul &gt; li
				{
					width: 16.6%;
					height: 100%;
					float: left; 
				}
					#nav &gt; ul &gt; li &gt; a
					{
						height: 100%;
						font-size:18px; /* font size of primary nav title */
						line-height: 40px; /* height position of text */
						text-align: center;
					}
						#nav &gt; ul &gt; li:not( :last-child ) &gt; a
						{
							border-right: 1px solid #CCC; /* the dividing lines */
						}
						#nav &gt; ul &gt; li:hover &gt; a,
						#nav &gt; ul:not( :hover ) &gt; li.active &gt; a
						{
							background-color: #ccc; /*bg color of parent hover */
						}
			
			
			#home {
				background-color:#990000;
				color: #FFF;
			}
			
			#sex {
				background-color:#CC3333;
				color: #FFF;
			}
			
			#life {
				background-color:#ffde17;
				color: #FFF;
			}
			
			#threshold {
				background-color:#27AAE1;
				color: #FFF;
			}
			
			#money {
				background-color:#00a14b;
				color: #FFF;
			}

			/* ***********************SUB NAVIGATION*************** */

				#nav li ul
				{
					background-color:#FFF; /* CAEBFF background color of dropdown */ 
					opacity: .92;
					display: none; /*hides the sub nav until rollover/tap */
					position: absolute;
					top: 100%;
					box-shadow: 3px 3px 20px #000;



					
				}
					#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 */
							font-family: Arial, Helvetica, sans-serif;
							color: #FFFFFF;
							font-weight:400;
							border-top: 1px solid #FFF; /* color of horizontal dividing line */
							padding: 0.75em; /* 15 (20) */

						}
						#nav li ul li a:hover,
						#nav li ul:not( :hover ) li.active a
						{
							background-color:#FFF; /* rollover color */	
							color: #000;
							font-weight:600;
													}




		@media only screen and ( max-width: 62.5em ) /* 1000 */
		{
			#nav
			{
				width: 100%;
				position: static;
				margin: 0;
			}
		}


		@media only screen and ( max-width: 40em ) /* 640 */
		{
			html
			{
				font-size: 75%; /* 12 */
			}

			#nav
			{
				position: relative;
				top: auto;
				left: auto;
				z-index:5;
			}
				#nav &gt; a
				{
					width: 3.125em; /* 50 */
					height: 3.125em; /* 50 */
					text-align: left;
					text-indent: -9999px;
				/*	background-color: #990000; /* color of mobile nav button */
					background-image:url(nav/nav_home.png);
					background-repeat: no-repeat;
					position: relative; left:5px; top:-75px;
				}
					#nav &gt; a:before,
					#nav &gt; a:after
					{
						position: absolute;
	/*					border: 2px solid #fff; /* this effects the solid bars on the nav icon */
						top: 35%;
						left: 25%;
						right: 25%;
						content: '';
					}
					#nav &gt; a:after
					{
						top: 60%; /* changes the position of the lines in the nav button */
					}

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


			/* first level */

			#nav &gt; ul
			{
				height: auto;
				display: none;
				position: absolute;
				left: 0;
				right: 0;
				top: -15px;
			}
				#nav:target &gt; ul
				{
					display: block;
				}
				#nav &gt; ul &gt; li
				{
					width: 100%;
					float: none;
				}
					#nav &gt; ul &gt; li &gt; a
					{
						height: auto;
						text-align: left;
						padding: 0 0.833em; /* 20 (24) */
					}
						#nav &gt; ul &gt; li:not( :last-child ) &gt; a
						{
							border-right: none;
							border-bottom: 1px solid #336699; /*top-level horizontal line of dropdown */
						}


				/* second level */

				#nav li ul
				{
					position: static;
					padding: 1.25em; /* 20 */
					padding-top: 0;
				}
		}
</pre></body></html>