@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #44546A;
    font: 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 822px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem;
}
p {
    padding-bottom: 0.75rem;
}
.pb1 {
    padding-bottom: 2rem;
}
h1 {
    margin: 0 0 1.375rem;
    font-size: 1.28em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.625rem;
}
h3 {
    font-size: 1.14em;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.ins {
    color: #0563C1;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0.75rem 1rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    padding: 2.5rem 1.25rem 2.75rem;
    border: 2px solid #767171;
    width: 274px;
    position: relative;
}
header::before {
    content: "";
    width: calc(100% - 1rem);
    height: 12px;
    background-color: #C00000;
    position: absolute;
    bottom: 0.75rem;
    left: 0.5rem;
}
header :is(h2, li) {
    font-size: 0.91em;
    line-height: 1.3;
}
header ul {
    padding-bottom: 2rem;
}
header ul li {
    padding-left: 0.875rem;
}
header ul li::before {
    content: "\25A0";
    color: #EE1414;
    font-size: 0.65em;
    margin: 2px 0 0 -0.875rem;
}
.logo {
    padding-bottom: 2rem;
}
article {
    padding: 1rem;
    width: 482px;
}
main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
}
footer p {
    font-size: 0.91em;
    line-height: 1.3;
    padding: 0 1rem;
}
@media only screen and (max-width: 821px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    main {
        display: block;
    }
    header, article {
        width: auto;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
    header {
        margin-bottom: 1rem;
    }
    br {
        display: none;
    }
    p span {
        display: inline-block;
    }
}