.accordion-button {
    font-size: inherit;
    border: 1px solid var(--blue);
    color: var(--blue);
    background-color:  var(--white);
    padding:  0 8px;
    border-radius: 8px;
    font-family: var(--serif);
}
.accordion-button[aria-expanded="false"] .acc-indicator::before {
    content: "\2192";
    color: var(--red);
}
.accordion-button[aria-expanded="true"] .acc-indicator::before {
    content: "\2193";
    color: var(--red);
}
/* small and medium*/
@media (max-width: 64rem) {
.accordion-header:has(> .accordion-button[aria-expanded="false"]) + .accordion-panel {
    display: none;
}
.acc-responsive-desktop {
    display: none;
}
}
/*Large*/
@media (min-width: 64.0000000001rem) {
    .accordion-button {
        display: none;
    }
}
dialog::backdrop {
    background-color: var(--blue);
    opacity: 80%;
}
.modal-open, .modal-close {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--blue);
    background-color: var(--white);
    border: 1px solid var(--blue);
    border-radius: 8px;
    padding: 0 8px;
}
dialog {
    border: 0;
    border-radius: 8px;
    padding: 8px;
    margin: auto;
    max-width: 800px;
}
.dialog-header-wrapper {
    display: flex;
    align-items: start;
    border-bottom: 1px solid var(--blue);
}
.dialog-header {
    font-size: 1.5rem;
    padding: 0;
    margin: 0;
    flex-grow: 1    ;
}
e-box {
    padding: 8px;
    border-left: 1px dotted var(--blue);
    display: block;
}
.nav-links {
    list-style-type: none;
}
.nav-links-item[aria-current] {
    color: var(--black);
    background: var(--white);
    font-weight: bold;
}
.nav-links-item a {
    text-decoration: none;
}
#nav-btn {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--blue);
    background-color: var(--white);
    border-radius: 8px;
    padding: 0 8px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}
#nav-btn::marker {
    color: var(--red);
}
#nav-desktop, #nav-mobile {
    margin: 0   ;
    padding: 0  ;
    border: 0   ;
}
/* small and medium*/
@media (max-width: 64rem) {
    .nav-links-item {
        padding: 0 8px;
        border-radius: 8px;
    }
    #nav-desktop {
        display: none;
    }
}
/*large*/
@media (min-width: 64.0000000001rem) {
.nav-links-item {
    padding: 8px 0 8px 8px;
    border-radius: 8px 0 0 8px;
}
#nav-mobile {
    display: none;
}
}
:root {
    --serif: Georgia, "Times New Roman", Times, Serif;
    --black: #222222;
    --white: #ffffff;
    --blue:#00247d;
    --red: #cf142b;
    --disabled-gray: #898989;
    }
body {
    background-color: var(--blue);
        color: var(--white);
    font-family: var(--serif);
    font-size: 16px;
    padding: 8px
}
header, footer, .text-center {
    text-align: center;
}
header p {
    color: var(--blue);
}
ol {
    list-style-type: decimal;
}
ol ol {
    list-style-type: upper-alpha;
}
ol ol ol {
    list-style-type: upper-roman;
}
ol ol ol ol {
    list-style-type: lower-alpha;
}
ol ol ol ol ol {
    list-style-type: lower-roman;
}

a, a:active, a:focus, a:hover, a:visited {
    color: var(--white);
}
dt {
    font-weight: bold;
    color: var(--blue);
}
dd {
    margin-left: 16px;
}
a:focus-visible, summary:focus-visible {
    outline: 6px double var(--white);
    box-shadow: 0 0 0 4px var(--blue);
}
/*skip link CSS, hidden visually, but will appear in reading order. Will be displayed when either is in focus.*/
.sr-only, #skip-links:not(:focus-within), #aria-live-region {
    position: absolute;
    left:  -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
#nav {
    padding: 8px 0;
}
footer {
    font-size: smaller;
    }
    footer ul {
        list-style-type: none;
        display: inline;
    }
    footer li {
        display: inline;
    }
    footer li[aria-current="page"] {
    font-weight: bold;
}
footer li .separator {
    font-weight: normal !important;
}
.white-background {
    background-color: var(--white);
    color: var(--black);
    border-radius: 8px;
    padding: 8px;
}
.white-background a, .white-background a:visited, .white-background a:hover{
    color: var(--blue);
}
.white-background a:active {
    color: var(--red);
}
h1, h2, h3, h4, h5, h6 {
    color: var(--blue);
}
.white-background a:focus-visible, .white-background button:focus-visible {
    outline: 6px double var(--blue);
    box-shadow: 0 0 0 4px var(--white);
}
/* small*/
@media (max-width: 48rem) {
    #wrapper, header, footer, #nav, #main {
        width: 100%;
    }
}
/*medium*/
@media (min-width: 48.000000000001rem) and (max-width: 64rem) {
    #wrapper, header, footer, #nav, #main {
        width: 100%;
    }
}
/*large*/
@media (min-width: 64.0000000001rem) {
    #wrapper, header, footer {
        width: 100%;
        max-width: 75rem;
        margin: 0 auto;
        box-sizing: border-box;
    }
    header {
        border-radius:  8px 8px 0 8px;
        text-align: left;
    }
#wrapper {
    display: flex;
    align-items: stretch;
    padding: 0;
}
#nav, #nav-wrapper, #main {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
}
#nav-wrapper {
    background-color: var(--white);
}
#nav {
    background-color: var(--blue);
    border-radius: 0 8px 0 0;
    height: 100%;
    padding-top: 16px;
}
#main {
flex-grow: 1;
    border-radius: 0 0 8px 8px;
    padding: 16px;
}
}
/*end large*/
.smaller {
    font-size: smaller;
}
.text-right {
    text-align: right;
}
.img-center {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.no-bullets {
    list-style-type: none;
}
.header-first-line {
    color: var(--blue);
    font-size: 2rem;
    font-weight: bold;
}
.more-line-height {
    line-height: 1.5;
}