/* General styles for all menus */
.nav {
	/*background: #000;*/
    background:#0088a0;
    /*background:#fff;*/
	position: fixed;
	
	width: 230px;
	height: 100%;
	/*top: 80px;*/
	z-index: 999;
	 left: -230px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	
	overflow:hidden;
}

.nav #Logo {
	color: #fff;
	font-size: 1.9em;
	margin: 0;
	background: #000;
	/*height:167px;*/
}

.nav #Logo img {
	display:block;
    height:auto;
    margin:0px auto;
    width:100%;
    padding:25px 10px;
}

.nav ul {
	list-style-type: none;
	padding: 0;
    margin-top:0px;
}

.nav ul li {
	
}

.nav ul a {
	display: block;
	color: #fff;
    /*color:#000;*/
	font-size: 19px;
	font-weight: 500;
	padding: 12px 20px;
	height:50px;
	position:relative;
	text-decoration:none;
	outline:none; 
	border:0;
}

.nav ul a:hover
{
	text-decoration: underline;
}

.nav ul a.primary.active {
	background: #6f6f6f;
    font-weight:600;
    /*background: #d32b1e;*/
    /*color:#fff;*/

}

.nav ul a.nolink {
   pointer-events: none;
   cursor: default;
}

/*
.nav ul a.nolink:after {
   display:none;
}*/

.nav ul a.primary.active:after {
    position:absolute;
    right:0;
	top:50%;
	margin-top:-10px;
    content:"";
    width:0;
    height:0;
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
    border-right:10px solid rgb(234, 242, 245);
}


.nav ul.subnav {
	margin-bottom:10px;
}

.nav ul.subnav a {
	display: block;
	color: #fff;
    /*color:#000;*/
     /* color: #0088a0;*/
	font-size: 16px;
	font-weight: 700;
	padding:3px 20px;
	height:auto;
    padding-top: 5px;
}

.nav ul.subnav a.active {
	text-decoration: underline;
    /*color: #fff;*/
}

.nav ul.subnav.activeblock {
	/*background: #4a494a;*/
    /*background:#000;*/
	padding:0px;
}


#Menu {
	overflow-x: auto;
	margin-right: -18px;
	margin-top: 80px;
	width: 100%;
}



/* Primary category Icons */


.nav #Menu a.primary i{
    float: left;
    margin: 3px 15px 0 0;
}

.nav #Menu a.primary.file-icon:before {
	content: "";
    display: block;
	width:20px;
	height:20px;
    float: left;
    margin: 3px 15px 0 0;	
	background-size: 20px 20px;
}

/* Open/close NAV button */

.nav.open {
	left: 0px;
}

body.mobile .nav.open ul a.primary.active:after {
    display:none;
}

.hamburger.open {
	left: 240px;
    background: #0088a0;
}

.hamburger {
	position:fixed;
	left: 10px;
	top:85px;	
	border: none;
	background: #565656;
	display: none;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index:4;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index:1000;
    outline:none;
}

.hamburger:hover {
	background: #0088a0;
}

.hamburger.active {
	background: #565656;
}

.hamburger.disabled {
	background: #aaa;
	pointer-events: none;
}

.hamburger img {
	width:95%;
}


/* Fade overlay when open on mobile */

body.mobile #FadeOverlay
{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	background: rgba(0, 0, 0, 0);
	z-index:10;
	display:none;
}

body.mobile.menuopen #FadeOverlay
{
    background-color: rgba(0, 0, 0, 0.4);
	display:block;
}



@media (min-width: 0px) and (max-width: 1024px) {

	.hamburger {
		display:block;
	}
	#Content.main .mpcontainer {
	    margin:80px 20px 2px 0px;
    }
}