<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.mobileMenuSubSelector,
.sub-menu-toggle
{
    display: none;
}
#mainMenu a
{
    display: block;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 1em;
    padding-bottom: 1em;
    color: var(--bs-dark);
    font-weight: 400;
    text-decoration: none;

    -webkit-transition: all 0.5s  ease-in-out; /* Safari */
    transition: all 0.5s ease-in-out;
}

#mainMenu a.menuLinkLevel1
{
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#mainMenu li.level1:hover a.menuLinkLevel1
{
    color: var(--primaryclr);
    background-color:  #F0F0F0;
}

#mainMenu
{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2em;
    width: 100%;
    height: 4em;
}

#mainMenuWrapper .current-item a.menuLinkLevel1
{
    border-bottom: 1px var(--secondaryclr) solid;
}

#mainMenuWrapper .level2 a:hover
{
    background-color: #fbfbfb;
    text-decoration: none;
}

#mainMenuWrapper li.level2:hover a.menuLinkLevel1
{
    color: #cd3f30;
    background-color: #fbfbfb;
    box-shadow: 4px -2px 4px 2px #C0C0C0;
}

#mainMenuWrapper li.level2.current-item a
{
    background-color: #fbfbfb;
}


#mainMenuWrapper li.level1
{
    position: relative;
    flex-grow: 1;
    height: 100%;
    text-align: center;
    white-space: nowrap;
    border-bottom: 2px transparent solid;
}

#mainMenuWrapper li.level1:hover
{
    border-bottom-color: var(--secondaryclr);
}

#mainMenuWrapper li.level1.last-item
{
    background: none;
}

#mainMenuWrapper li.level1 ul.level2
{
    position: absolute;
    max-width: 0px;
    min-width: 100%;
    max-height: 0;
    height: auto;
    top: 2.5em;
    left: 0;
    margin-left:  0;
    margin-top: 0.5em;
    padding-left: 0;
    padding-top: 1em;
    text-align: left;
    list-style: none;
    overflow: hidden;
    opacity: 0;

    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

#mainMenuWrapper ul.level1 li.level1 ul.level2 li
{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background: #FFF;
}

.notouch #mainMenuWrapper ul.level1 li.level1:hover ul.level2,
#mainMenuWrapper ul.level1 li.level1.opened ul.level2
{
    max-width: 80vw;
    max-height: 80vh;
    opacity: 1;
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.25);
    overflow: visible;
}

.notouch #mainMenu li.level1 li.level2:hover
{
    z-index: 100;
}

#mainMenuWrapper li.level1 li.level2 a:hover
{
    background-color: var(--bg-clr);
    color: var(--primaryclr);
}

#mainMenuWrapper li.level1 li.level2
{
    position: relative;
    border-left: 3px transparent solid;
}

li.level2.hasSub a.menuLinkLevel2:after
{
    content: "&gt;";
    position: absolute;
    top: 0.35em;
    right: 0.6em;

    transition: all 0.8s ease-in-out;
}

li.level2.hasSub.opened a.menuLinkLevel2:after,
li.level2.hasSub:hover a.menuLinkLevel2:after
{
    top: 0.55em;
    transform: rotate(90deg);
}

#mainMenuWrapper li.level1 li.level2,
#mainMenuWrapper li.level1 li.level3
{
    border-bottom: 1px #999 dotted;
}

#mainMenuWrapper li.level1 li.level2:last-child,
#mainMenuWrapper li.level1 li.level3:last-child
{
    border-bottom: none;
}

#mainMenuWrapper li.level1.current-item li.level2
{
    width: 100%;
    background-color: var(--secondaryclr);
    border-left: 3px var(--primaryclr) solid;
}

#mainMenuWrapper li.level1.current-item li.level2.current-item
{
    background-color: #fbfbfb;
    border-left: 3px var(--primaryclr) solid;

    -webkit-transition: all 0.4s linear;
    transition: all 0.5s linear;
}

#mainMenuWrapper li.level1.current-item li.level2.current-item a
{
    border-left: 3px #fbfbfb solid;
}

#mainMenuWrapper li.level1 li.level2:hover
{
    border-left: 3px var(--primaryclr) solid;
}

#mainMenuWrapper li.level2 ul.level3
{
    position: absolute;
    top: 0;
    left: 100%;
    width: auto;
    height: auto;
    max-width: 0;
    max-height: 0;
    margin-left: 0px;
    margin-top: 0px;
    min-width: 10em;
    padding-bottom: 0;
    padding-top: 0px;
    padding-left: 0;
    overflow: hidden;

    z-index: 101;

    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.notouch #mainMenuWrapper li.level2:hover ul.level3,
#mainMenuWrapper li.level2.opened ul.level3
{
    max-width: 50vw;
    max-height: 80vh;
    margin-left: -8px;
    margin-top: -2px;
    border: 2px #fbfbfb outset;
    opacity: 1;
}


#mainMenuWrapper ul.level2 li.level3
{
    width: 100%;
    z-index: 102;
}

.notouch #mainMenuWrapper li.level2:hover ul.level3:hover
{
    border-color: #fbfbfb;
}

#mainMenuWrapper ul.level2 li.level3:hover
{
    color: #FFF;
}

#mainMenuWrapper ul.level2 li.level3
{
    display: block;
    width: 100%;
}
</pre></body></html>