* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 999px;
    margin: 16px auto;
    border: 1px solid #FFC000;
    border-width: 1px 80px 1px;
    padding: 0 38px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

#wrapper .logo {
    position: absolute;
    bottom: 11px;
    right: 0;
}

#wrapper .justify {
    text-align: justify;
}

#wrapper .hide {
    display: none;
}

#wrapper .article {
    padding-bottom: 50px;
    margin-top: 16px;
    position: relative;
}

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

#wrapper p.mr-1 {
    margin-right: 208px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 span {
    font-size: 19px;
}

#wrapper h1 {
    margin: 21px auto;
    font-size: 23px;
    font-weight: 700;
    text-align: center;
}

#wrapper h3 {
    font-size: 21px;
    font-weight: 400;
}

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

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

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

#wrapper ul li:before {
    content: "\002022";
    color: #000;
    font-size: 24px;
    position: absolute;
    top: -1px;
    left: 0;
    font-family: Arial, sans-serif;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
}

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

@media (max-width: 998px) {
    #wrapper {
        padding: 0 16px 16px;
        margin: 0;
        border-width: 1px 30px 1px;
        text-wrap: pretty;
    }

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

    #wrapper .article {
        padding-bottom: 0;
    }

    #wrapper .justify {
        text-align: left;
    }

    #wrapper .logo {
        bottom: -3%;
    }

    #wrapper p.mr-1 {
        margin-right: 0;
        width: 72%;
    }

    #wrapper .nobr-1 {
        white-space: normal;
    }
}

@media all and (max-width: 600px) {
    #wrapper .logo {
        position: static;
        display: flex;
        justify-content: center;
    }

    #wrapper p.mr-1 {
        width: auto;
    }

    #wrapper {
        border-width: 1px 10px 1px;
        font-size: 15px;
    }

    #wrapper ul {
        margin-left: 0;
    }
}