* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 960px;
    margin: 12px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #003366;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
}

#wrapper .qrcode {
    position: relative;
}

#wrapper .qrcode a {
    position: absolute;
    top: 43%;
    right: 2%;
    width: 9%;
    height: 28%;
    z-index: 1;
}

#wrapper .logo img {
    max-width: 100px;
}

#wrapper .logo {
    padding: 20px 30px;
}

#wrapper .center {
    text-align: center;
    margin: 0 20px 25px;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .article {
    padding: 20px 100px;
}

#wrapper .footer {
    padding: 0 16px 20px;
}

#wrapper .footer p {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 21px;
}

#wrapper .footer p span {
    background: #FF9900;
    padding: 2px;
    color: #000;
}

#wrapper .logo-bottom {
    display: flex;
    margin-top: 35px;
    justify-content: center;
}

#wrapper .logo-bottom img {
    max-width: 100px;
}

#wrapper p {
    margin-bottom: 20px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 27px;
    font-weight: 700;
    text-align: center;
    color: #FF9900;
}

#wrapper h2 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #FF9900;
}

#wrapper a {
    color: #003366;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px 30px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 23px;
    position: relative;
    font-weight: bold;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 21px;
    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: 959px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    #wrapper p {
        text-align: left;
    }

    #wrapper .article {
        padding: 16px 5%;
    }

    #wrapper .footer {
        padding: 0 5% 16px;
    }
}

@media (max-width: 729px) {
    #wrapper ul {
        margin-left: 0;
    }

    #wrapper .center {
        margin: 0 0 15px;
    }
}

@media (max-width: 499px) {
    #wrapper .logo {
        padding: 16px;
        display: flex;
        justify-content: center;
    }
}