/*!
 * Accordion v2.7.2
 * Simple accordion created in pure Javascript.
 * https://github.com/michu2k/Accordion
 *
 * Copyright 2017-2019 Michał Strumpf
 * Published under MIT License
 */

.ac {
    margin-top: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ac>.ac-q {
    font: bold 15px "Arial", sans-serif;
    color: #111;
    padding: 10px 30px 10px 10px;
    margin: 0;
    text-decoration: none;
    display: block;
    cursor: pointer;
    position: relative;
}

.ac>.ac-q::after {
    content: "+";
    text-align: center;
    width: 15px;
    right: 10px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
}

.ac>.ac-a {
    overflow: hidden;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.ac>.ac-a p {
    font: 14px/1.5 "Arial", sans-serif;
    color: #777;
    margin: 0;
    padding: 10px;
}

.ac.js-enabled>.ac-a {
    visibility: hidden;
}

.ac.is-active>.ac-a {
    visibility: visible;
}

.ac.is-active>.ac-q::after {
    content: "\2013";
}

.tab-page {
    display: none;
}

.active-page {
    display: block;
}

html {
    height: 100%;
}

body,
html {
    margin: 0;
    font-family: sans-serif, serif;
    min-height: 100%;
    position: relative;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.top-bar {
    margin: 0;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #c5d7ee;
    line-height: 1;
}

.top-bar.admin {
    background-color: #7c878e;
    border-bottom: 4px solid #8a2121;
}

.top-bar.admin .top-bar-logo a,
.top-bar.admin .top-bar-logo a:visited,
.top-bar.admin .top-bar-navigation a,
.top-bar.admin .top-bar-navigation a:visited {
    color: white;
}

.top-bar .top-bar-logo a,
.top-bar .top-bar-logo a:visited {
    font-size: 24px;
    color: #000e2f;
    text-decoration: none;
}

.top-bar .top-bar-navigation a,
.top-bar .top-bar-navigation a:visited {
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;
    color: #000e2f;
    font-weight: 600;
    font-size: 14px;
}

.top-bar .top-bar-navigation a:hover,
.top-bar .top-bar-navigation a:focus {
    color: white;
}

.top-bar .mobile-menu-trigger {
    display: none;
}

.top-bar .mobile-menu-trigger>a {
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 860px) {
    .top-bar .top-bar-navigation {
        display: none;
    }
    .top-bar .mobile-menu-trigger {
        display: block;
    }
}

#mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 10px;
    pointer-events: none;
}

#mobile-menu .mobile-menu-popup {
    position: relative;
    padding: 25px;
    background-color: #eaecef;
    border-radius: 5px;
    color: #000e2f;
    min-height: 400px;
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    will-change: transform, opacity;
    -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    border: 1px solid #a2a7ab;
}

#mobile-menu .mobile-menu-popup .mobile-menu-close {
    position: absolute;
    font-size: 30px;
    top: 10px;
    right: 20px;
    cursor: pointer;
    border: none;
    outline: none;
    font-weight: bold;
    background: transparent;
}

#mobile-menu .mobile-menu-popup .mobile-menu-menu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

#mobile-menu .mobile-menu-popup .mobile-menu-menu-wrap a {
    padding-top: 10px;
    padding-bottom: 10px;
}

#mobile-menu.active {
    pointer-events: auto;
    display: block;
}

#mobile-menu.active .mobile-menu-popup {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

p {
    line-height: 1.4;
}

.red {
    color: red;
}

.content {
    padding: 40px 20px;
    padding-bottom: 150px;
    display: block;
}

.content .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.content .row .column {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 20px;
}

.content .row .column.c30 {
    min-width: 30%;
}

.content .row .column.c40 {
    min-width: 40%;
}

.content .row .column.c70 {
    min-width: 70%;
}

.content .row .column.cmax70 {
    max-width: 70%;
}

@media (max-width: 768px) {
    .content .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .content .row .column.cmax70 {
        max-width: 100%;
    }
}

.box-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.box-row .box {
    background-color: #c5d7ee;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 40px 20px;
}

.box-row .box.blue {
    background-color: #c5d7ee;
}

.box-row .box.blue:first-child {
    background-color: #c5d7ee;
}

.box-row .box:first-child {
    background-color: #cccccc;
}

@media (max-width: 768px) {
    .box-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 30px;
    }
}

.ac {
    background-color: whitesmoke;
}

.ac>.ac-a p,
.ac>.ac-a span,
.ac>.ac-a ol,
.ac>.ac-a ul,
.ac>.ac-a li {
    color: #333;
}

.simple-tabs {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0;
    margin-bottom: 0;
}

.simple-tabs li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    background-color: #323e58;
    color: white;
    cursor: pointer;
    height: 100px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.simple-tabs li.active,
.simple-tabs li.active:hover {
    background-color: rgba(128, 128, 128, 0.17);
    color: #323e58;
    cursor: default;
}

.simple-tabs li:hover {
    background-color: #404a60;
}

.simple-tabs li img {
    max-width: 30px;
    margin-bottom: 4px;
    height: auto;
}

.simple-tabs li span {
    font-weight: bold;
}

@media (max-width: 768px) {
    .simple-tabs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .simple-tabs li {
        padding: 15px 0;
    }
    .simple-tabs li img {
        display: none;
    }
}

.tab-page {
    background-color: rgba(128, 128, 128, 0.17);
    padding: 20px;
}

.blog-entry {
    background-color: rgba(197, 215, 238, 0.5);
    border: 1px solid #c5d7ee;
    padding: 10px;
    margin-bottom: 10px;
}

.button {
    background-color: #000e2f;
    text-align: center;
    line-height: 1;
    padding: 25px;
    border-radius: 0;
    display: block;
    color: white;
    text-decoration: none;
}

.button:visited,
.button:active {
    color: white;
    font-weight: bold;
}

.button-form,
form input[type="submit"] {
    background-color: #000e2f;
    text-align: center;
    line-height: 1;
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 0;
    display: inline-block;
    color: white;
    text-decoration: none;
}

.button-form:visited,
form input:visited[type="submit"],
.button-form:active,
form input:active[type="submit"] {
    color: white;
}

hr {
    margin: 20px 0 25px;
}

img.image-icon {
    width: 100%;
    max-width: 20px;
    height: auto;
}

form label {
    display: block;
}

form input[type="text"],
form input[type="password"] {
    font-size: 16px;
    padding: 3px;
}

form input[type="submit"] {
    margin-top: 10px;
}

form textarea {
    display: block;
    width: 500px;
    height: 200px;
    font-size: 16px;
    padding: 7px;
    margin-bottom: 10px;
}

.notice {
    display: block;
    padding: 15px;
    background-color: lightgrey;
    border: grey;
}

.notice.success {
    background-color: lightgreen;
    border: 1px solid green;
}

.notice.error {
    background-color: rgba(255, 42, 42, 0.37);
    border: 1px solid red;
}

table {
    background-color: #f1f0f0;
    border-collapse: collapse;
    border: 1px solid black;
    width: 100%;
}

table th {
    background-color: white;
}

table tr td,
table tr th {
    padding: 10px;
    border: 1px solid black;
}

footer {
    margin: 0;
    padding: 60px 20px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #000e2f;
    line-height: 1;
    position: absolute;
    bottom: 0;
    width: 100%;
}

footer .footer-navigation a {
    color: white;
    font-size: 13px;
    padding: 20px;
}

footer img {
    max-width: 260px;
}

@media (max-width: 768px) {
    footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        position: relative;
    }
    footer .footer-navigation {
        margin-bottom: 20px;
    }
    footer .footer-navigation a {
        display: block;
    }
}

.screen-reader {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}