* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 718px;
    margin: 16px auto;
    border: 1px solid #d2d2d2;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    box-shadow: 0px 0px 10px #999;
}

header {
    padding: 15px 4%;
}

article {
    padding: 15px 4% 5px;
}

footer {
    padding: 15px 4% 5px;
    background: #004F80;
    color: #fff;
}

p {
    margin: 0 0 10px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 16px 0 32px;
    padding: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

h1 span {
    font-weight: 400;
}

.jus {
    text-align: justify;
}

h2 {
    margin: 0 0 5px;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
}

article h2 {
    margin-top: 20px;
}

h3 {
    text-align: center;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    margin: 0 0 4px;
}

a {
    color: #004F80;
    text-decoration: none;
    white-space: nowrap;
}

footer a {
    color: #fff;
}

.button {
    text-align: center;
}

.button a {
    padding: 12px 30px 12px 30px;
    background: white;
    display: inline-flex;
    align-items: center;
    margin: 20px auto 20px auto;
    color: #004F80;
    position: relative;
    font-size: 1.2em;
    text-align: center;
    font-weight: 700;
}

ul {
    margin: 0 0 10px;
    list-style: none;
}

ul li {
    padding-left: 20px;
    margin: 0 0 4px;
}

li:before {
    content: "\25A0";
    float: left;
    font-size: 8px;
    text-indent: -14px;
}

img {
    max-width: 100%;
}

.center {
    text-align: center;
}

.center img {
    vertical-align: middle;
}

.span {
    margin: 0 3px;
}

@media all and (max-width:716px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    header {
        padding: 16px;
    }

    article {
        padding: 0 16px 6px;
    }

    footer {
        padding: 16px 16px 6px;
    }

    span {
    	white-space: nowrap;
    }

    .jus {
    	text-align: left;
    }
}