:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.25rem;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    color: #000;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 740px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
    padding: 1rem;
}

header {
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

article {
    margin: 0;
}

footer {
    margin: 0;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 18px;
    line-height: 24px;
}

h2 {
    font-size: 18px;
    margin: 1rem 0;
    line-height: 22px;
}

h3 {
    font-size: 14px;
    margin: 1rem 0;
    line-height: 1.125rem;
}

p {
    margin: 0 0 1rem;
    text-align: justify;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #0000ff;
    white-space: nowrap;
    text-decoration: underline;
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 20px;
    text-indent: -1.25rem;
}

.mar {
	margin-top: 12px;
}

@media all and (max-width:739px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        hyphens: auto;

    }

    p {
        text-align: left;
    }

    br {
        display: none;
    }

    footer br {
        display: inline;
    }
}