<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 1000px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    padding: 60px 30px 30px 381px;
    position: relative;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    position: absolute;
    top: 70px;
    left: 50px;
}

#wrapper .footer {
    padding: 16px;
    background: #4F478E;
    width: 326px;
    position: absolute;
    bottom: 30px;
    left: 30px;
}

#wrapper .flex-qr {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 30px;
    margin-bottom: 15px;
    row-gap: 15px;
}

#wrapper .qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#wrapper .flex {
    display: flex;
    column-gap: 25px;
    row-gap: 15px;
    flex-wrap: wrap;
}

#wrapper .flex p {
    margin-bottom: 0;
    font-size: 14px;
}

#wrapper .qrcode p {
    margin-bottom: 5px;
}

#wrapper .footer p {
    color: #fff;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 30px 30px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2010';
    font-size: 19px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -1px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 999px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
        padding: 20px 16px 16px 361px;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .header {
        left: 20px;
    }

    #wrapper .footer {
        left: 16px;
    }
}

@media (max-width: 767px) {
    #wrapper {
        padding: 16px;
    }

    #wrapper .header {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    #wrapper .footer {
        position: static;
        width: auto;
    }
}

@media (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }
}</pre></body></html>