@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
hr {
    border: none;
    background: #787D7E;
    height: 1px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
p {
    padding-bottom: 0.5rem;
}
.pb_0{
    padding-bottom: 0;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.692em;
    line-height: 1.1;
    color: #C4121A;
}
h1 span.ttu{
    text-transform: uppercase;
}
h1 small{
    color: #000;
    font-size: 0.8em;
    text-transform: none;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
.flex{
    display: flex;
    justify-content: start;
    gap: 0 0.5rem;
    flex-wrap: wrap;
}
article p:first-of-type, footer p{
    font-size: 1.3em;
    line-height: 1.3em;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p :is(a,span){
        display: inline-block;
    }
}