#new-menu {
    width: 100%;
    padding: 5px 0px 5px 5px;
    font-family: Verdana;
}

.menu-item {
    margin: 0;
    padding: 3px 10px;
    margin: 1px 0px;
    cursor: pointer;
    transition: background-color 0.0s;
    font-size: 12px;
    color: #fffe;
    font-weight: bold;
    border-right: 4px solid transparent;
}

.menu-item:hover {
    color: white;
    border-right: 4px solid transparent;
}

.menu-item.active {
    color: #fff;
    border-right: 4px solid #fff;
}

.submenu {
    display: none;
    font-size: 11px;
    color: white;
    margin: 5px 0px 5px 10px;
}

.submenu-item {
    padding: 3px 3px 3px 10px;
    cursor: pointer;
    transition: background-color 0.0s;
    color: #fffe;
    border-right: 4px solid transparent;
}

.submenu-item a {
    text-decoration: none;
    color: #fffe;
}

.submenu-item:hover {
    border-right: 4px solid transparent;
}

.submenu-item:hover a {
    color: white;
}

.submenu-item.active {
    font-weight: bold;
    border-right: 4px solid #fff;
}

.expanded .submenu {
    display: block;
}
