@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #004a79;
    background: #004a79;
    font: 1em/1.3 "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 840px;
    margin: 1rem auto;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 1rem;
    font-size: 1.8em;
    line-height: 1.2em;
    color: #fff;
    text-align: center;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
    font-weight: normal;
    text-transform: uppercase;
}
h3 {
    font-size: 1.4625em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 2.5rem;
}
ul li:before {
    content: "\2022";
    float: left;
    margin: -1px 0 0 -1.5rem;
}
header {
    display: flow-root;
}
main {
    padding: 1rem;
    background: #FFF;
    border-radius: 0.25rem 0.25rem 0.5rem 0.5rem;
}
p.big {
    font-size: 1.3em;
    line-height: 1.3em;
}
@media only screen and (max-width:839px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, li {
        hyphens: auto;
    }
    main {
        border-radius: 0;
    }
}
@media only screen and (max-width:480px) {
    li {
        padding-left: 1.8rem;
    }
    li:before {
        margin-left: -1.8rem;
    }
}