@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 0.938em/1.3 'Roboto', sans-serif;
}
#wrapper {
    position: relative;
    max-width: 988px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
    text-align: left;
}
a {
    color: #000;
    text-decoration: none;
}
a span {
    color: #01305F;
}
p {
    padding-bottom: 0.75rem;
}
h1 {
    margin: -0.25rem 0 0.75rem;
    font-size: 1.1em;
    line-height: 1.3;
    text-align: center;
    color: #FF0000;
}
h2 {
    font-size: 1.313em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 300;
}
h3 {
    font-size: 1.9em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 300;
}
h2 span, h3 span {
    color: #C00000;
    font-style: italic;
    font-family: "Times New Roman", Times, serif;
    font-size: 1.063em;
}
strong, h1 {
    font-weight: 500;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: ">";
    display: block;
    font-size: 0.9em;
    line-height: 1;
    position: relative;
    float: left;
    margin: 3px 0 0 -1rem;
    color: #C00000;
    font-weight: 400;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
article {
    padding: 0.5rem 5.35rem 0;
}
article section {
    display: flex;
    justify-content: space-between;
}
article section:first-of-type {
    margin-top: 1rem;
}
article section:last-of-type {
    margin-bottom: 1rem;
}
article section aside {
    width: 49%;
}
article p:last-of-type a:nth-of-type(2) ins{
    color: #0462C1;
}
footer {
    padding: 0 5.35rem 6rem;
}
footer figure {
    margin: 0;
    position: absolute;
    right: 6rem;
    bottom: 2rem;
}
@media only screen and (max-width:988px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    br {
        display: none;
    }
    p a {
        display: inline-block;
    }
    article {
        padding: 0.5rem 1rem 0;
    }
    footer {
        padding: 0 1rem 4rem;
    }
    footer figure {
        position: static;
    }
}
@media only screen and (max-width:700px) {
    h1 {
        font-size: 1.6em;
    }
    article section {
        display: block;
    }
    article section aside {
        width: 100%;
    }
    article section:last-of-type aside:first-of-type ul {
        padding-bottom: 0;
    }
}
