<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media screen and (max-width: 600px) {

    table.mobile caption {
        background-image: none;
    }

    table.mobile th {
        display: none;
    }

    table.mobile tr {
        background-color: transparent !important;
    }

    table.mobile td {
        display: block;
        padding: 5px;
        text-align: center !important;
    }

    table.mobile tr td:first-child {
        background: #efefef;
        color: #000;
        border-top: #efefef 3px solid;
        margin-top: 20px;

    }

    table.mobile tr td:first-child a {

        color: #000;
    }

    table.mobile tr td:first-child:before {
        color: rgb(225, 181, 71);
    }

    table.mobile td:before {
        content: attr(data-th);
        font-weight: bold;
        display: inline-block;

    }

    table.mobile tr th:last-child,
    table.mobile tr td:last-child {
        max-width: 100% !important;
        min-width: 100px !important;
        width: 100% !important;
        margin-bottom: 10px;
        border-bottom: #efefef 3px solid;
    }

    table.mobile tr td.text-end {
        text-align: center !important;
    }


    .mobile-no {
        display: none;
    }

    .mobile-si {
        display: block;
    }

    .text-start-mobile {
        text-align: left !important;
    }

    .text-left-mobile {
        text-align: left !important;
    }

    .text-end-mobile {
        text-align: right !important;
    }

    .text-right-mobile {
        text-align: right !important;
    }

    .text-center-mobile {
        text-align: center !important;
    }
}

@media screen and (min-width: 601px) {
    .mobile-si {
        display: none;
    }
}</pre></body></html>