nav {
    margin: 0;
    padding: 0;
}

.ddmcontainer {
    width: 100%;
    max-width: 1024px;
    margin: 10px auto;
    font-size:15pt;
    font-family:'Source Sans Pro', calibri, sans-serif;
    text-transform: uppercase;
}

.ddmcontainer li {
    font-size:13pt;
}

.toggleMenu {
    display:  none;
    background: #ededed;
    padding: 10px 15px;
    color: #545454;
}

.nav {
    list-style: none;
     *zoom: 1;
     background:#ededed;
}

.nav:before,
.nav:after {
    content: " "; 
    display: table; 
}

.nav:after {
    clear: both;
}

.nav a:hover {
    text-decoration:underline;
}

.nav ul {
    list-style: none;
    width: 17em;
}

.nav a {
    padding: 5px 20px;
    color:#545454;
}

.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;
    color:#545454;
}

.nav > li > a:hover {
    background:#2990ba;
    color:#ddd;
}

.nav li  ul {
    position: absolute;
    left: -9999px;
    margin:0px;
}

.nav > li.hover > ul {
    left: 0;
    color:#eee;
}

.nav li li.hover ul {
    left: 100%;
    top: 0;
}

.nav li li a {
    color:#eee;
    display: block;
    background: #2990ba;
    position: relative;
    z-index:100;
}

.nav li li li a {
    color:#eee;
    background:#249578;
    z-index:200;
}

@media screen and (max-width: 768px) {
    .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;
    }

}