body, nav, ul, li, a  {margin: 0; padding: 0;}
body { font-family: 'titilliumregular'; }
a {text-decoration: none;}
.container {
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
}
.toggleMenu {
    display:  none;
    /* background: #666; */
    padding: 10px 15px;
    color: #fff;
    float: right;
}
.nav {
    list-style: none;
     *zoom: 1;
     
    /* background:#175e4c; */
    width: 100%;
    /* background: red; */
    align-content: center;
    /* float: left; */
    margin: 0 auto;
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {
    list-style: none;
    width: 9em;
}
.nav a {
padding: 10px 15px 7px 15px;
color: #1e0504;
font-size: 17px;
font-family: 'titilliumregular';
text-transform: uppercase;
}

.nav a:hover {
background-color:#103f8f;
color:#fff;
}

.nav a.selected {
background-color:#103f8f;
color:#fff;
}


.nav li {
    position: relative;
}
.nav > li {
    float: left;
    /* border-top: 1px solid #4584B6; */
    /* list-style: disc; */
    /* padding: 0 10px; */
}
.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;
background: #1356A3;
position: relative;
z-index: 100;
border-bottom: 1px solid #C9C9C9;
text-align: left;
/* max-width: 200px; */
opacity: 0.9;
padding: 10px 6px;
text-transform: initial;
min-width: 256px;
color: #fff;
}
.nav li li li a {
    background:#249578;
    z-index:200;
    border-top: 1px solid #1d7a62;
}

@media screen and (max-width: 767px) {
    .active {
        display: block;
    }
    .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;
    }

}