@charset "utf-8";
/* CSS Document */

.nav {
   list-style: none;
    background: #22446a;
    width: 100%;
    margin: auto;
    font-size: 14px;
    font-weight: 600;
    font-family: roboto;
    text-transform: uppercase;
	 
	 
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 18em;
	
}
.nav a {
    padding: 12px 20px;
    color:#fff;
	text-transform:uppercase;
}
.nav li {
    position: relative;
	 
}
.nav > li {
   float: left;
    border-top: 0px solid #104336;
}
.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;
	font-size:13px;
	
}
.nav > li.hover > ul {
    left: 0;
}
.nav > li.hover > ul > li.hover > ul {
    left:100%;
	top:0;
}
.nav > li.hover > ul > li.hover > ul > li.hover > ul {
    left:100%;
	top:0;
}
/*.nav li li.hover ul {
    left: 100%;
    top: 0;
}*/
.nav li li a {
    display: block;
    background: #396494;
    position: relative;
    z-index:100;
    border-top: 1px dotted #fff;
}
.nav li li a:hover {background:#0d2642;}
.nav li li li a {
    background:#a12935;
    z-index:200;
    border-top: 1px dotted #fff;
}


@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
	
	
	.nav{width:100%; margin:none; font-size:16px;}
    .nav > li {
        float: 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;
    }

}