#header a {text-decoration: none;}

.toggleMenu {
    display:  none;
}
.nav {
    list-style: none;
     *zoom: 1;
	 margin-left:0;
	 float:right;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
}
.nav a {
    padding: 0 15px;
	font-size:13px;
	border-right:1px solid #fff;
	letter-spacing:0.5px;
}
.nav li:last-child a {
	border-right:none;
}
.nav li {
    position: relative;
	padding:6px 0;
}
.nav > li {
    float: left;
}
.nav > li > .parent {
    background-image: url("images/downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
}
.nav > li > a {
    display: block;
}
.nav li  ul {
    position: absolute;
    left: -9999px;
}
.nav > li.hover > ul {
    left: 0;
}
.nav li li.hover ul {
    left: 100%;
    top: 0;
}
.nav li li a {
    display: block;
    position: relative;
    z-index:100;
}
.nav li li li a {
    z-index:200;
}





/* fonts */
#header {font-family:HelveticaNeueMedium;}

/* colors */

/* togle menu button for narrow screens */
.toggleMenu {
    color: #fff;
}

/* general navigation background color */
.nav {
     background:transparent;
}

/* general navigation link font color */
.nav a {
    color:#fff;
}

/* first level items borders */
/* .nav > li {
    border-top: 1px solid #104336;
} */

/* second level navigation colors */
.nav li li a {
    background: #1d7a62;
    border-top: 1px solid #175e4c;
}

.nav li li li a {
    background:#249578;
    border-top: 1px solid #1d7a62;
}

/* layout */
#header {
}

a.toggleMenu {
	padding: 10px 15px;
}

.nav ul {
    width: 9em;
}

.nav > li > .parent {
	
}
.nav li.active a {
		color:#fcdc06;
	}

@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
	.nav {
		background:#0d7dbf;
		width:100%;
		-webkit-box-shadow: inset 0px 8px 5px 0px rgba(0,0,0,0.4);
		-moz-box-shadow: inset 0px 8px 5px 0px rgba(0,0,0,0.4);
		box-shadow: inset 0px 8px 5px 0px rgba(0,0,0,0.4);
	}
    .nav > li {
        float: none;
		padding:0;
		border-bottom:1px solid #023358;
    }
	.nav > li:last-child {
		border-bottom:none;
	}
    .nav > li > .parent {
        background-position: 95% 50%;
    }
    .nav li li .parent {
        background-image: url("images/downArrow.png");
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .nav ul {
        display: block;
        width: 100%;
    }
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }
	.nav a {
		border-right:none;
		font-family:HelveticaNeueLight;
		font-size:24px;
		line-height:45px;
	}
	.nav li.active a {
		color:#fcdc06;
	}
}