@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em 'Calibri', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3.125rem 0;
}
p {
    padding-bottom: 1.25rem;
}
h1 {
    margin: 4rem 0rem 3rem;
    font-size: 1.625em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
h2 span {
    font-weight: 400;
}
a {
    color: #000;
    text-decoration: none;
}
p a.ins {
    color: #00f;
    text-decoration: underline;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0rem 0rem 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}
header {
    padding: 0rem 4rem 0rem 0;
    display: flex;
    justify-content: space-between;
}
article, footer {
    padding: 0rem 0rem 0rem;
    max-width: 600px;
    margin: 0 auto;
}
section {
    background-color: #E6E6E6;
    padding: 1rem 1rem 0.5rem;
    margin-bottom: 1.75rem;
}
section strong {
    display: inline-block;
    width: 270px;
}
section p {
    margin-bottom: 0.3125rem;
    padding-bottom: 0;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    i br {
        display: none;
    }
    p {
        text-align: left;
    }
    p a, span {
        display: inline-block;
    }
    header {
        padding-right: 0;
    }
    h1 {
        margin: 2rem 0rem 2rem;
        font-size: 1.625em;
        line-height: 1.1em;
    }
    i+span {
        display: none;
    }
    section {
        margin-bottom: 1.25rem;
    }
}
@media only screen and (max-width:360px) {
    section strong {
        display: block;
        width: 100%;
    }
}