.toggleMenu:before {
    font-family: Arial,sans-serif;
    content: '\2261';
    font-size: 14px;
    font-weight: bold;
    margin: 1px 4px 0 0;
}

.toggleMenu {
    background: #fff;
    font-weight: bold;
    display: none;
    padding: 5px 15px;
    margin: 0 0 5px 0;
    background: #eee;
}

.nav {
    background: #fff;
    list-style: none;
    *zoom: 1;
    margin: 0;
    padding: 0;
}

.nav:before,
.nav:after {
    content: " ";
    display: table;
}

.nav:after {
    clear: both;
}

.nav ul {
    list-style: none;
    width: 15em;
    margin: 0;
    padding: 0;
}

.nav a {
    font-weight: bold;
    line-height: 2.2em;
    padding: 0 15px 0 10px;
    text-decoration: none;
}

.nav li {
    position: relative;
}

.nav > li {
    border-top: 1px solid #fff;
    float: left;
}

.nav > li > .parent {
    background-image: url("/content/images/downArrow.png");
    background-position: right;
    background-repeat: no-repeat;
}

.nav > li.hover > .parent {
    background-image: url("/content/images/upArrow.png");
}

.nav > li > a {
    display: block;
}

.nav li ul {
    left: -9999px;
    position: absolute;
}

.nav > li.hover > ul {
    left: 0;
}

.nav li li.hover ul {
    left: 100%;
    top: 0;
}

.nav li li a {
    background: #fff;
    border-top: 1px solid #fff;
    display: block;
    position: relative;
    z-index: 100;
}

.nav li li li a {
    background: #fff;
    border-top: 1px solid #fff;
    z-index: 200;
}

@media
screen and (max-width: 768px) {
    .active {
        display: block;
    }

    .nav li {
        border-top: 1px solid #ddd;
    }

    .nav > li {
        float: none;
    }

    .nav > li > .parent {
        background-position: 95% 50%;
    }

    .nav li li .parent {
        background-image: url("/content/images/downArrow.png");
        background-position: 95% 50%;
        background-repeat: no-repeat;
    }

    .nav ul {
        display: block;
        width: 100%;
        margin: 0 0 0 20px;
    }

    .nav > li.hover > ul,
    .nav li li.hover ul {
        position: static;
    }
}