@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Segoe UI', Arial, sans-serif;
}
strong {
    font-weight: 600;
}
.bold, h1, h2 {
    font-weight: 700;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 4px #EA7C1D;
    background-color: #fff;
    overflow: hidden;
    padding: 0.5rem 1.25rem 0.25rem;
}
p {
    padding-bottom: 0.5rem;
    text-align: justify;
}
p a.ins{
    text-decoration: underline;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.6em;
    line-height: 1.1em;
    font-weight: 700;
}
h1 + p {
    padding-bottom: 0.75rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
}
h3 {
    font: 700 1.5em/1.3 'Times New Roman', Times, serif;
    font-style: italic;
    color: #F15821;
}
h1, ul li::before {
    color: #EA7C1D;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.375rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    padding: 0 0 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p br {
        display: none;
    }
    p {
        text-align: left;
    }
    p span {
        display: inline-block;
    }
    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    h3 {
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
}