@charset 'UTF-8';
@font-face {
    font-family: 'Old Style';
    font-style: normal;
    font-weight: normal;
    src: url('fonts/oldsh___-webfont.woff2') format('woff2'),
         url('fonts/oldsh___-webfont.woff') format('woff');
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    background-color: #777;
    color: #000;
    font-family: 'Old Style', 'Times New Roman', serif;
    font-size:  17px;
}
img {
    bottom: 0;
    box-shadow: 0 0 10px #333;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.blue-moon {
    text-decoration-line: underline;
    text-underline-offset: -1em;
}
.toggle-label {
    background-color: #bbb;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 40px 40px;
    border: 0;
    box-shadow: 0 0 2.5px 2.5px #555;
    cursor: pointer;
    display: inline-block;
    height: 40px;
    left: 0;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: fixed;
    text-indent: 100%;
    transition: background-color 0.25s;
    white-space: nowrap;
    width: 40px;
}
.toggle-label:active,
.toggle-label:focus,
.toggle-label:hover {
    background-color: #eee;
}
.toggle-label-panel {
    bottom: 0;
    background-image: url('toggle-label-info.svg');
    z-index: 100;
}
#toggle-panel:checked ~ .toggle-label-panel {
    background-image: url('toggle-label-x.svg');
}
.toggle-label-pdf {
    background-image: url('toggle-label-pdf.svg');
    top: 0;
    z-index: 25;
}
.panel {
    -moz-overflow-scrolling: touch;
    -ms-overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.95);
    bottom: 0;
    height: 100%;
    left: 0;
    line-height: 1.5;
    overflow-scrolling: touch;
    overflow: scroll;
    padding: 40px;
    position: fixed;
    text-align: left;
    top: 0;
    transform: translateX(-100%);
    transition: transform 0.25s;
    width: 100%;
    z-index: 50;
}
#toggle-panel:checked ~ .panel {
    transform: translateX(0);
}
.panel-brand,
.panel-p {
    margin: 10px 0;
}
.panel-brand {
    font-size: 133%;
    margin-top: 0;
}
.panel-copyright {
    margin-bottom: 0;
}
.panel-link > a {
    color: #000;
    transition: color 0.25s;
}
.panel-link > a:hover,
.panel-link > a:focus,
.panel-link > a:active {
    color: #777;
}
@media screen and (min-width: 768px) {
    .toggle-label-pdf {
        background-image: url('toggle-label-long.svg');
        background-size: 132px 40px;
        height: 40px;
        width: 132px;
    }
}
