
/*.container {
    width: 90%;
    max-width: 900px;
    margin: 10px auto;
}*/
.toggleMenu {
    display:  none;
    background: #666;
    padding: 10px 15px;
    color: #fff;
}
.nav_list {
    list-style: none;
     *zoom: 1;
     background:#561101;
}
.nav_list:before,
.nav_list:after {
    content: " "; 
    display: table; 
}
.nav_list:after {
    clear: both;
}
.nav_list ul {
    list-style: none;
    width: 9em;
}
.nav_list a {
    padding: 10px 15px;
    color:grey;
}
.nav_list li {
    position: relative;
}
.nav_list > li {
    float: left;
    border-top: 1px solid #561101;
}
.nav_list > li > .parent {
    background-image: url("../images/downArrow.png");
    background-repeat: no-repeat;
    background-position: right;
}
.nav_list > li > a {
    display: block;
}
.nav_list li  ul {
    position: absolute;
    left: -9999px;
}
.nav_list > li.hover > ul {
    left: 0;
}
.nav_list li li.hover ul {
    left: 100%;
    top: 0;
}
.nav_list li li a {
    display: block;
    background: darkgrey;
    position: relative;
    z-index:100;
    /*border-top: 1px solid #561101;*/
}
.nav_list li li li a {
    background: darkgrey;
    z-index:200;
    /*border-top: 1px solid #1d7a62;*/
}
.nav_list li li a:hover {
    color:white;
}
@media screen and (max-width: 768px) {
    .active {
        display: block;
    }
    .nav_list > li {
        float: none;
    }
    .nav_list > li > .parent {
        background-position: 95% 50%;
    }
    .nav_list li li .parent {
        background-image: url("../images/downArrow.png");
        background-repeat: no-repeat;
        background-position: 95% 50%;
    }
    .nav_list ul {
        display: block;
        width: 100%;
    }
   .nav_list > li.hover > ul , .nav_list li li.hover ul {
        position: static;
    }

}