/**@import url(http://fonts.googleapis.com/css?family=Oxygen+Mono);/**/
@media screen {
	nav a:link, nav a:hover, nav a:active, nav a:visited {
		color: #cbcbcb;
	}
	
	nav{
		border:0;
		background: #333;
		background: rgba(51,51,51,1);
		border-bottom:0.4em solid #CDD6D8; /*1b9bff*/ /**	 font-family:'Oxygen Mono', sans-serif;    /**/
		font-size:0.8em;
		padding-right: 16em;
		width: calc(100% - 16em);
/* 		width:100%; */
	}
		nav#backmenu{
			visibility:hidden;
		}
	nav#menu{
		position:fixed;
/* 		z-index: 9000; */
		top: 0px;
		box-shadow:0 0.2em 0.3em #999;
	}
	nav#menu:hover{
		position:fixed;
/* 		z-index: 9000; */
		top: 0px;
		box-shadow:0 0.2em 0.3em #999;
	}
	
	nav ul,nav li 
	{
		list-style:none;
		margin:0;
		padding:0;
	}
	
	nav ul 
	{
		position:relative;
/* 		z-index:9990; */
		text-transform:uppercase;
	}
	
	nav ul li 
	{
		float:left;
		min-height:0.1em;
		vertical-align:middle;
	}
	
	nav ul li:hover 
	{
		position:relative;
		z-index:9991;
		cursor:default;
		background-color: #0D69A6;
	}
	
	nav ul ul 
	{
		display:none;
		position:absolute;
		top:100%;
/* 		z-index:9990; */
		width:100%;
		bottom:0;
		left:0;
		margin-top:0;
		border-top:0.4em solid #CDD6D8;
		text-transform:none;
		min-width:12em;
	}
	
	nav ul ul li {
	float:none;
	font-weight:400;
	position:relative; /** shadow **/
	background:rgba(51,51,51,1);
	}
	
	nav ul ul ul {
	top:0;
	left:auto;
	right:-99.5%;
	border-top:0 none;
	}
	
	nav ul li:hover >ul {
	display:list-item;
	}
	
	/* top and menu links */
	nav a
	{
		display:block;
		line-height:1em;
		text-decoration:none;
		color:#CBCBCB;
		padding:0 1em;
	}
	
	nav >ul {
		display:inline-block;
	}
	
	/* menu section links */
	nav ul ul a, nav ul ul a:visited {
		color:#FFF;
		border-top:0.1em #555 solid;
		line-height:1.5em;
		padding:0.6em 1em;
	}
	
	/* 1st menu sections */
	nav ul ul li:first-child >a {
		border-top:0.1em solid #555;
	}
	

	
	/* menu sections with subsections */
	nav ul ul li.has-sub >a:after {
		content: '›';
		position:absolute;
		top:45%;
		right:1em;
		margin-top:-0.7em;
	}
	
	/* top menu sections */
	nav >ul >li >a 
	{
		line-height:2.8em;
		border-right:0.1em #555 solid;
	}
	
	/** last element effects **/
	nav ul ul li:last-child
	{
		background-color: rgba(51,51,51,1);
		border-radius: 0 0 0.6em 0.6em;
		box-shadow: 0 0.2em 0.4em -0.1em #333;
	}
	nav ul ul li:last-child:hover
	{
		background-color: #0D69A6;
		box-shadow: inset 0 0 0.1em 0.1em #333, 0 0.2em 0.4em -0.1em #333;
	}
	
	
}

@media print {
	nav {
	display:none;
	}
}