/*
This CSS is only used when the menu system has sub menu items 
For example, the menu that is used for USSCON.com uses these
*/

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: whitesmoke;
    border: 2px solid #666;
    padding: 5px;
    font-weight: bold;
    z-index: 1;
    width: 200px;
}

.dropdown-content a {
    color: var(--clr);
    padding: 6px 8px;
    text-decoration: underline;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    text-decoration: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.menubar .menu-item {
    position: relative;
}