/*nav, ul, li, a  {margin: 0; padding: 0;}
body {font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
a {text-decoration: none;}  */
.container {
   /* width: 90%;  */
    max-width: 940px;  
    margin: 10px auto;
}
.toggleMenu {
    display:  none;
    background: #666;
    padding: 10px 15px;
    color: #fff;
    margin-bottom:1em;
}


.nav { float:right;
       position:relative; top: 40px;
       list-style: none;
       *zoom: 1;
       background-color:transparent; 
}
.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}
.nav:after {
    clear: both;
}
.nav ul {  
    list-style: none;
    width: 9em;
}
.nav a { 
    font-family: arial;
    text-decoration: none;
    padding: 10px 15px;
    color:#f1f1f1;
}

.nav a:visited { color: #f1f1f1; }

.nav a:hover { color: #F03C02; }

.nav li {
    position: relative;
}
.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 { 
    text-transform: uppercase;
    display: block;
    color: #f1f1f1;
    background-color: #D1D8B8;
    border: 1px solid #52618c;
    border-bottom: 0px;
    padding: 8px 24px;
    position: relative; left:-15px;
    z-index:100;
    font-size: 12px;
    text-decoration: none;

}

 .nav li li a:hover {
  border-color: #fff0ea;
}

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


/* MEDIA QUERY */

@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
    
    .nav {
        float: none; margin-left:-25px;  text-align:center; position:relative; top: 0;
    }
    
    .nav > li {
        float: none;  
    }
    .nav > li > .parent {
        background-position: 95% 50%;
    }
    .nav li li .parent {
        background-image: url("../images/downArrow_2.png");
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    
    .nav li li a { left:-25px; border-bottom:1px solid #ccc;background-color:#999;color: white }
    
    .nav ul {
        display: block;
        width: 100%;
        
    }
   .nav > li.hover > ul , .nav li li.hover ul {
        position: static;
    }

}

