<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* DIV */
div.content {
    padding: 15px;
    text-align: center;
    display: block;
    min-height: 1000px;
    background-color: #ffe0ba !important;
}

/* TABLE */
div.divContentTable {
    overflow: auto;
    white-space: nowrap;
    margin-bottom: 10px;
}

.contentTable {
    width: 100%;
    background-color: #fdfaed;
}

.contentTable td,
.contentTable th {
    text-align: center;
}

th.admin {
    background-color: #703900 !important;
    color: white !important;
}

/* Admin commands */
a.adminCommandLink:link,
a.adminCommandLink:visited {
    color: black;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 2px;
    min-width: 90px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: rgb(255 113 29);
}

a.adminCommandLink:hover,
a.adminCommandLink:active {
    background-color: rgb(255, 157, 101);
}

button.adminCommandButton {
    background-color: black;
    color: red;
    width: 100px;
    height: 25px;
    margin: 2px;
    cursor: pointer;
}

button.adminCommandButton:hover {
    background-color: red;
    color: black;
}

form.uploadFile {
    border: solid 1px grey;
    padding: 5px;
    text-align: left;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.adminUploadButton {
    background-color: rgb(255 113 29);
    color: black;
    width: 100%;
    height: 25px;
    margin: 2px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.adminUploadButton:hover {
    background-color: rgb(255, 157, 101);
    color: black;
}

.adminUploadButton:disabled,
.adminUploadButton[disabled] {
    background-color: #cccccc;
    color: #666666;
    cursor: default;
}

.adminUploadBrowseFile {
    background-color: bisque;
    cursor: pointer;
}

div.disabled {
    pointer-events: none;
}

div#communication p {
    text-align: center;
    font-size: 20px;
}

form.uploadFile input {
    width: 100%;
}

span.upMsg {
    text-align: center;
    color: #bd3d00;
    display: block;
}

/* hide preview on small screens */
@media screen and (max-width:1024px) {
    #previewContainer {
        display: none;
    }
}

#slideshowContainer {
    height: 400px;
}

#slideshowContainer img {
    max-height: 400px;
    height: auto;
    width: auto;
}</pre></body></html>