* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 870px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 100px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

header {
    padding: 0 0 32px;
}

article {
    border-bottom: 1px solid #808080;
}

footer {
    padding: 50px 0;
    border-bottom: 2px solid #000;
}

p {
    margin: 0 0 32px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 16px;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
}

h2 {
    margin: 0 0 32px;
    font-size: 16px;
    font-weight: 400;
    color: #808080;
}

a {
    color: #467886;
    text-decoration: underline;
}

ul {
    margin: 0 0 32px;
    list-style: none;
}

ul li {
    padding-left: 50px;
    margin: 12px 0;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 22px;
    margin-top: 1px;
    font-family: Arial, Helvetica, sans-serif;
    text-indent: -25px;
}

.margin {
	margin: 0 0 12px;
}

.jus {
	text-align: justify;
}

img {
    max-width: 100%;
}

@media all and (max-width:868px) {
    #wrapper {
        padding: 16px;
        border: none;
        margin: 0;
    }

    header {
    	padding: 0 0 16px;
    }

    header img {
    	width: 100%;
    }

    h1 {
    	line-height: 1.3;
    }

    .jus {
    	text-align: left;
    }

    ul li {
        padding-left: 20px;
    }

    li:before {
        text-indent: -20px;
    }

    span {
    	white-space: nowrap;
    }
}