<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#navigation
{
    display: flex;
    justify-content: space-between;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 10px;
    padding-bottom: 10px;
}


.nav_item a
{
    font-family: Arial;
    font-size: 1em;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: black;
}

.nav_item span
{
    font-family: Arial;
    font-size: 1em;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: black;
}


.nav_dropdown_content
{
    display: none;
    position: absolute;
    background-color: #d8e5f7;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.nav_dropdown_content a
{
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.nav_dropdown_content a:hover {background-color: #d1def0;}

.nav_dropdown_item:hover .nav_dropdown_content {display: block;}


@media only screen and (max-width:699px)
{
    #navigation
    {
        display: none;
    }
}



</pre></body></html>