@charset "UTF-8";


:root {
  color-scheme: dark light normal;
  --old-light-color: #faf9f9;
  --old-dark-color: #242424;
  --aro-light-color: lightgreen;
  --aro-dark-color: rgb(0, 43, 0);
}

h1.title {
    text-align: center;
}

p.topic-title {
    font-size: 1.6em;
}

.literal > span.pre {
    white-space: nowrap;
}

.simple li,
.simple ul,
.simple > li p {
    margin-top: 0;
    margin-bottom: 0;
}

div.line-block {
    display: block;
}

div.line-block div.line-block {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 40px;
}

div.topic,
pre.code,
pre.literal-block,
pre.math {
    margin-right: 40px;
    margin-left: 40px;
}

pre.code,
pre.literal-block,
pre.math {
    margin-left: 1.5em;
    margin-right: 1.5em;
}

div.topic {
    margin-left: 1.5em;
    margin-right: 1.5em;
}

div.topic > table {
    margin-top: 0;
    margin-bottom: 0;
}

div.code,
div.topic,
pre.code,
pre.literal-block,
pre.math {
    margin-left: 1rem;
    margin-right: 1rem;
}

div.code {
    margin-bottom: 1rem;
}

body {
    background: var(--old-light-color);
    color: var(--aro-dark-color);
    line-height: 1.4;
    padding: 1em;
    margin: 1em auto;
    max-width: 770px;
}

#menu ul,
#menu ul li {
    list-style: none;
    padding-left: 0;
    padding-right: 0;
}

#menu ul li {
    display: inline-block;
    margin-right: 1.5em;
    color: inherit;
}

.entry-title {
    font-size: 2em;
}

#header {
    border-bottom: 1px solid var(--aro-dark-color);
    background-image: url("/content/images/2024/aro-flag-header.png");
    background-size: cover;
    margin: 1em auto;
}

.metadata p {
    display: inline;
}

#brand {
    font-size: 3em;
    line-height: 1;
    font-weight: bolder;
}

a
a :link,
a :visited,
a :link:hover,
a :visited:hover  {
    color: inherit;
    text-decoration: solid;
}

h1 {
    margin-block-end: 0;
}

#menu :link,
#menu :visited,
#brand :link,
#brand :visited,
h1 :link,
h1 :visited {
    color: inherit;
    font-weight: bolder;
    text-decoration: none;
}
img {
    border: none;
    line-height: 1;
}
.postpage img,
.postpage object {
    height: auto;
    max-width: 100%;
}

@media (prefers-color-scheme: dark) {
    body {
        background: var(--old-dark-color);
        color: var(--aro-light-color);
    }
    :link,
    :visited,
    :link:hover,
    :visited:hover {
        color: inherit;
    }
    #header {
        border-bottom: var(--aro-light-color);
    }
}


@media print {
    *,
    :after,
    :before {
        background: 0 0 !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
        font-family: Garamond, Junicode, serif;
    }
    body {
        font-size: 12pt;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    a[href^="#"]:after,
    a[href^="data:"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    pre {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    article .entry-title a[href]:after,
    article .metadata a[href]:after,
    article .tags a[href]:after {
        content: "";
    }
    #header {
        display: none;
    }
}


