@charset "utf-8";
#nav
			{
	clear: both;
	top: 0;
	left: 0;
	width: 100%;
	border-top-width: thick;
	border-right-width: thick;
	border-bottom-width: thick;
	border-left-width: thick;
	border-bottom-style: none;
	border-top-color: #67B6D7;
	border-right-color: #67B6D7;
	border-bottom-color: #67B6D7;
	border-left-color: #67B6D7;
	border-top-style: none;
	background-color: #333;
	z-index: 2500;
	position: relative;
			}
				#nav > a
				{
					width: 3.125em; /* 50 */
					height: 3.125em; /* 50 */
					text-align: left;
					text-indent: -9999px;
					background-color: #333;
					position: relative;
				}
					#nav > a:before,
					#nav > a:after
					{
						position: absolute;
						border: 2px solid #fff;
						top: 35%;
						left: 25%;
						right: 25%;
						content: '';
					}
					#nav > a:after
					{
						top: 60%;
					}

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


			/* first level */

			#nav > ul
			{
				height: auto;
				display: none;
				position: absolute;
				left: 0;
				right: 0;
			}
				#nav:target > ul
				{
					display: block;
				}
				#nav > ul > li
				{
	width: 100%;
	float: none;
	background-color: #333;
	padding-top: 1%;
	padding-bottom: 1em;
				}
					#nav > ul > li > a
					{
	height: auto;
	text-align: left;
	text-decoration: none;
	color: #FFF;
	font-weight: normal;
	padding-left: 0.5em;
	padding-bottom: 0.5em;
	font-size: 1.2em;
					}
						#nav > ul > li:not( :last-child ) > a
						{
							border-right: none;
							border-bottom: 1px solid #333;
						}


				/* second level */

				#nav li ul
				{
					position: static;
					padding: 1.25em; /* 20 */
					padding-top: 0;
				}
		}
