<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
    font-size: 36px;

    --font-family-sans-serif: Avenir,Helvetica,Arial,sans-serif;
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    font-family: sans-serif;
}

@media (min-width: 62.5rem) {
    html {
        font-size: 14px;
    }

    body {
        line-height: 150%;
    }
}

body {
    background: #ededed;
    font-size: 1rem;
    line-height: 200%;
    color: #000000;

    /*background-image: url('../media/img/gui/test.png');
    background-repeat: repeat;*/

    margin: 0;
    padding: 0;
}

a {
    font-size: 1rem;
    text-decoration: underline;
    color: #222222;
}

a:hover {
    text-decoration: underline;
}

a.small_link {

    font-size: 0.8rem;
    text-decoration: underline;
    color: #222222;
    padding-top: 0;
    margin-top: 0;
}

h1 {
    font-size: 3em;
    color: #253d3f;
}
h2 {
    font-size: 2em;
    color: #d79a69;
}
h3 {
    font-size: 1.25em;
    color: #d79a69;
    line-height: 150%;
}
@media (min-width: 62.5rem) {
    h3 {
        line-height: 100%;
    }
}

.yellow {
    background: #ffeeba;
}

.green {
    background: #c3e6cb;
}

.light-gray {

    background: #ddd;
}

input[type=text], input[type=email], input[type=tel], input[type=password], input[type=date], input[type=number], select, option, textarea{
    font-size: 1.2rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    width: 20rem;
    border-radius: 0.75rem;
}
input[type=checkbox] {

    transform: scale(1.5);
    border: 1px solid #ccc;
    padding: 0.5rem;
    border-radius: 4px;
    box-sizing: border-box;
}


label {
    font-size: 1rem;
    font-weight: bold;
    padding: 0.2rem 0.2rem 0.2rem 0;
    display: inline-block;
}

input[type=submit] {
    font-size: 1.2rem;
    background-color: #364444;
    color: white;
    padding: 0.5rem 1rem 0.5rem 1rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    margin: 1rem 1rem 1rem 0;

}
input[type=button] {
    font-size: 1rem;
    background-color: #364444;
    color: white;
    padding: 0.3rem 0.3rem 0.3rem 0.3rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    margin: 0 0 0 0.5rem;

}

br {
    clear: left;
}

img{
    max-width: 100%;
    height: auto;
}
.info_background {
    background-color: #d79a69;
}
.info_message {

    color: #d79a69;
    font-weight: bold;
}
.info_message_light {
    font-style: italic;
    color: grey;
    font-size: 0.8rem;
}
.error_message {

    color: red;
    font-weight: bold;
}
.warning_message {

    color: red;
    font-style: italic;
}

.error_input {

    background: rgb(255, 204, 203);
}
.ignore_clicks {

    pointer-events:none;
}
.popup {

    border: 1px solid #364444;
    background-color: #fefefe;
    padding: 0.75rem;
    border-radius: 1rem;
}

.overlay {
    min-height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    background-color: rgb(36,44,44); /* Black fallback color */
    background-color: rgba(36,44,44, 0.9); /* Black w/opacity */
    overflow-x: hidden;
    padding: 10% 25%;
}

.overlay_content {

    background: white;
    width: 50%;
    padding: 1rem;
    border: 1px solid #364444;
    border-radius: 1rem;
}

.infobox {

    background: white;
    border: 1px solid #364444;
    padding: 0.75rem;
    border-radius: 1rem;
    margin: 2rem;
}

@media (max-width: 62.5rem) {

    .overlay {

        padding: 5% 5%;
    }

    .overlay_content {

        width: 90%;
    }
}

.loader {
    border: 1rem solid #f3f3f3; /* Light grey */
    border-top: 1rem solid #364444;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.header {

    display: grid;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
    width: 100%;
    background: #364444;
    color: white;
    border-radius: 0 0 2rem 0;
}

.message {

    width: 80%;
    margin-left: 10%;
    padding: 1rem;

    /*color: #d79a69;*/
    color: #687777;
    font-weight: bold;
    /*background: #687777;*/
    background: #ffffcc;
    border-radius: 0 0 2rem 2rem;
}

.content {

    text-align: left;
    padding: 0.75rem;
    grid-template-columns: repeat(1, 1fr);
}

.bigform  {

    font-size: 1.5rem;
}

.very_bigform {

    font-size: 1.75rem;
}

.bigtext {

    font-size: 1.75rem;
}

@media (min-width: 62.5rem) {
    .content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        gap: 1rem;
        padding: 4rem 2rem;
    }
}

.footer {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
    width: 100%;
    background: #364444;
    color: white;
    border-radius: 0 2rem 0 0;
}

@media (min-width: 62.5rem) {

    .footer {
        grid-template-columns: repeat(3, 1fr);
    }
    .header {
        grid-template-columns: repeat(1, 30% 20% 50%);
    }
}


.footer a:link {
    color: white;
}

.item {

    text-align: left;
    padding: 0.75rem 1rem;
}

.item_new_line {

    display: none;
}
.item_wide_breaker {

    display: none;
}
.hidden_item {

    display: none;
}

.data-item {
    width: 100%;
}

.data-item-special {
    width: 100%;
}

@media (min-width: 62.5rem) {

    .item_new_line {
        clear: both;
        float: left;
        display: block;
        position: relative;
    }

    .item_wide_breaker {

        float: left;
        display: block;
        text-align: left;
        padding: 1rem 2rem;
    }

    .item {

        float: left;
        padding: 1rem 2rem;
    }

    .data-item {
        width: 100%;
    }

    .data-item-special {
        width: 50%;
    }
}

.topnav {
    overflow: hidden;
}

.mobile_menu_header {

    display: none; !important
}

.topnav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 1rem 1.1rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}

.topnav a:hover {
    background-color: #bdcccc;
    border-radius: 1rem;
}

.topnav a.active {
    background-color: #687777;
    color: white;
    border-radius: 1rem;
}

.topnav .icon {
    display: none;
}

.store {

    display: grid;
    grid-auto-flow: row;
    grid-template: repeat(4, 1fr) / repeat(4, 1fr);
    float: left;
}

@media screen and (max-width: 62.5rem) {

    .store {

        grid-template: repeat(1, 1fr) / repeat(1, 1fr);
    }

}

.shop-item {

    padding: 0.5rem;

    text-align: center;
    display: block;

    border: 1px solid transparent;
}

.shop-item:hover {

    border: 1px solid #687777;
}

.shop-item-image {

    height: 20rem;
}

.store_item_content_div {

    background: white;
    width: 25rem;
    padding: 1rem;
}

@media screen and (max-width: 62.5rem) {

    .store_item_content_div {

        width: 90%;
    }

    .mobile_menu_header {

        position: relative;
        float: left;
        display: block;
        color: white;
        text-align: center;
        padding: 1rem 1.1rem;
        text-decoration: none;
        font-size: 1rem;
        font-weight: bold;
        background-color: #687777;
        border-radius: 1rem;
    }

    .mobile_menu_header_hidden {

        display: none; !important
    }

    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        float: right;

        display: block;
        /*position: absolute;
        right: 0;
        top: 0;*/
    }
}

@media screen and (max-width: 62.5rem) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

.clickable-row {

    cursor: pointer;
}

.clickable-row:hover {

    background: #ddd;
}

progress {
    color: #364444;
    border-radius: 1rem;
    height: 2rem;
    width: 100%;
}
progress::-moz-progress-bar {
    background: #364444;
    border-radius: 1rem;
    height: 2rem;
    width: 100%;
}
progress::-webkit-progress-bar {
    background-color: #eee;
    border-radius: 1rem;
}
progress::-webkit-progress-value {
    background: #364444;
    border-radius: 1rem;
    height: 2rem;
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: #364444;
    color: white;
    font-weight: bold;
    padding: 0.5rem;
    border: 0;
    text-align: left;
}

td {
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    text-align: left;
}

.result_div_main {

    width: 40%;
    margin-top: 5em;
}

@media screen and (max-width: 62.5rem) {

    .result_div_main {

        width: 100%;
        margin-top: 0.5em;
    }
}

@media screen and (max-width: 62.5rem) {

    table, thead, tbody, th, td, tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        /*position: absolute;
        top: -9999px;
        left: -9999px;*/

    }

    tr {
        border: 1px solid #ccc;
    }

    td {
        border: none;
        position: relative;
        line-height: 100%;
    }

}</pre></body></html>