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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 985px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fcc200;
    overflow: hidden;
    font-family: "Verdana", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    color: #222C78;
}

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

#wrapper .center {
    text-align: center;
    font-size: 17px;
    margin-bottom: 8px;
}

#wrapper .hide {
    display: none;
}

#wrapper .article {
    background: url(background.jpg) no-repeat top left;
    padding: 0 80px 118px;
    position: relative;
}

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

#wrapper h1 {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.2;
    text-align: center;
    color: #222C78;
}

#wrapper h3 {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.2;
    color: #222C78;
}

#wrapper h3.last {
    font-size: 15px;
    text-align: center;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #0000ff;
    text-decoration: underline;
}

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

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

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

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

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

@media all and (max-width: 984px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

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

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

    #wrapper .article {
        padding: 16px;
        margin: 0;
        background-size: auto;
        background-position: bottom center;
    }

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

@media all and (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }
}