<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General styles for all menus */
.cbp-spmenu
{
    background: #e8ecf2;
    position: absolute;
}

    .cbp-spmenu h3
    {
        color: #afdefa;
        font-size: 1.9em;
        padding: 20px;
        margin: 0;
        font-weight: 300;
        background: #2d323d;
    }

    .cbp-spmenu a
    {
        display: block;
        color: #1c6bb8;
        font-size: 12px;
        font-weight: 100;
        font-family: verdana;
        text-align:left;
    }

        .cbp-spmenu a:hover
        {
            background: #1679cc;
            color: #fff;
        }

        .cbp-spmenu a:active
        {
            background: #1679cc;
            color: #47a3da;
        }

/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical
{
    width: 240px;
    height: 100%;
    top: 0;
}

    .cbp-spmenu-vertical a
    {
        border-bottom: 1px solid #258ecd;
        padding: 1em;
    }

.cbp-spmenu-horizontal
{
    width: 744px;
    margin-top: -23px;
    box-shadow: 1px 3px 11px #838383;
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -webkit-border-bottom-right-radius: 6px;
    border: 1px solid #fff;
}

    .cbp-spmenu-horizontal h3
    {
        height: 100%;
        width: 20%;
        float: left;
    }

    .cbp-spmenu-horizontal a
    {
        text-decoration: none;
        float: left;
        width: 172px;
        height: 30px;
        padding: 0.5em;
        border-left: 1px solid #a4b4c1;
        border-bottom: 1px solid #a4b4c1;
    }

        .cbp-spmenu-horizontal a span
        {
            margin-top: 5px;
        }

/* Vertical menu that slides from the left or right */

.cbp-spmenu-left
{
    left: -240px;
}

.cbp-spmenu-right
{
    right: -240px;
}

.cbp-spmenu-left.cbp-spmenu-open
{
    left: 0px;
}

.cbp-spmenu-right.cbp-spmenu-open
{
    right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top
{
}

.cbp-spmenu-bottom
{
    bottom: -150px;
}

.cbp-spmenu-top.cbp-spmenu-open
{
    top: 0px;
}

.cbp-spmenu-bottom.cbp-spmenu-open
{
    bottom: 0px;
}

/* Push classes applied to the body */

.cbp-spmenu-push
{
    overflow-x: hidden;
    position: relative;
    left: 0;
}

.cbp-spmenu-push-toright
{
    left: 240px;
}

.cbp-spmenu-push-toleft
{
    left: -240px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push
{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
</pre></body></html>