@charset "utf-8";

:root {
    font-size: 16px;
}

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

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: Calibri, "Helvetica Neue", Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 200px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 5rem 3rem;
}

p {
    padding-bottom: 1rem;
    text-align: justify;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.250em;
    line-height: 1.1em;
    text-align: center;
}

h1+p {
    text-align: center;
}

h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0;
}

a {
    color: #0000FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 3rem;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 0.9em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -2rem;
}

li span {
    display: block;
    float: left;
    padding-right: 2rem;
}

li span:nth-of-type(4) {
    padding-right: 4.6rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem 0rem 0.5rem;
    text-align: center;
}

article {
    padding: 0rem 0rem 0rem;
}

footer {
    padding: 0rem 0rem 0rem;
}

@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }

    p {
        text-align: left;
    }

    footer br {
        display: none;
    }

    li span {
        padding-right: 1rem;
    }

    li span:nth-of-type(4) {
        padding-right: 3.6rem;
    }

    li {
        padding-left: 1rem;
    }

    ul li:before {
        margin-left: -1rem;
    }
}

@media only screen and (max-width:400px) {
    li span {
        float: none;
        padding-right: 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    li span:nth-of-type(4) {
        padding-right: 0;
    }

    li br {
        display: none;
    }
}