/* Copy of navMenu.css, adjusted for MS Ofiice Add-Ins */

:root {
    --navi_div_radius: 7px;
    --navi-total-width: 125px;
}

    #pageTitle img { width: 200px; }

    .navi:hover {
        width: var(--navi-total-width);
    }

    .navi:hover > div {
        /* this makes the vertical menu items visible */
        display: block;
    }


/* ==================================
    Cascading vertical drowdown
====================================*/
    
.navi {
    /* this is the overall container of all navigation elements */
    position: relative;
    display: inline-block;
    font-family:Arial;
    font-size:14px;
    padding:0; border:0;
    background-color:transparent;
}

    .navi div a {
        /* this is a single navigation item */
        border: 1px solid grey;
        color: black;
        display: block;
        float: none;
        text-decoration: none;
        padding: 7px 10px;
        margin: 0;
    }

            .navi div a:first-child {
                /* this is a single navigation item */
                border-top-left-radius: var(--navi_div_radius);
                border-top-right-radius:var(--navi_div_radius);
            }
            .navi div a:last-child {
                /* this is a single navigation item */
                border-bottom-left-radius:  var(--navi_div_radius);
                border-bottom-right-radius: var(--navi_div_radius);
            }
#aReset {
    border-top:2px solid black;
    color:red;
}

.navi div a:hover, .navi > div > div:hover > a {
    /* item or subitem being hovered over */
    /* also entry item of a submenu while the submenu is oben */
    box-shadow: 0 4px 4px rgba(0,0,0, .5);
    background-color: rgba(255,245,194, 0.5);
    border: 1px solid #a55d07;
    color: var(--myBrownColor);
}

.navi > div > div > a {
    /* this is the entry item of a submenu */
    border-radius: 0 !important;
    width: 150px;
}

    .dropContent {
        /* this is the main or a sub content container */
        margin: 0;
        float: left;
        position: relative;
        display: none;          /* important to be initially hidden */
        width: 100%;
        position: absolute;
        border: 0;
        z-index: 100;           /* once visible, place dropdown in front of other elements */
        border-radius: 5px;
        box-shadow: 3px 4px 4px black;
        background-color:#fff;
    }

div.navi div div.dropContent {
    /* position of submenu items 130 pixels right of parent */
    left: 130px;
    top: 0px;
}

/* ========================================================================*/