body{
    font-family: Verdana, sans-serif;
    font-size: 18px;
    padding: 0 0 60px 0;
    margin: 0;
    background-color: navajowhite;
}
body:not(.simple-background){
    background-image: linear-gradient(to right, navajowhite, white);
}

a:hover {
    background-color: darkorange;
}

a {
    text-decoration: none;
    color: #000;
}

.footer {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 60px;
    bottom: 0;
    padding: 0;
    border: none;
    outline: none;
    background-color: rgba(0,0,0,0);
    display: grid;
    grid-template-columns: auto 250px;
}

#scrollTopButton {
    z-index: 99;
    height: 60px;
    width: 100%;
    background-color: navajowhite;
    color: #000;
    border: none;
    outline: none;
    cursor: pointer;
}

.centered {
    text-align: center;
}

.justified {
    text-align: justify;
}

.test-align-left {
    text-align: left;
}

.test-align-right {
    text-align: right;
}

.hidden {
    display: none;
}

.primary {
    margin: 16px 32px;
}

.line-li {
    float: left;
}

.horizontal, .neutral_ul {
    list-style-type: none;
}

.inline{
    display: inline;
}

.inlineBlock {
    display: inline-block;
}

.image{
    max-width: 100%;
}
.container{
  position: relative;
}

@media screen and (max-width: 1000px) {
    .main {
        padding-left: 1vw;
        padding-right: 1vw;
    }
}
.horizontal li, a{
    appearance: button;
    text-decoration: none;
    padding: 8px;
    cursor: pointer;
}
@media screen and (max-width: 900px) and (max-height: 860px) {
    .horizontal li.inlineBlock {
        display: inline-block;
    }
    .desktop {
        display:none;
    }
    .mobile {
        display:block;
    }
}
@media screen and (min-width: 900px) and (min-height: 860px) {
    .horizontal li.mobile {
        display: none;
    }
    .horizontal li, a {
        display: inline-block;
    }
    .desktop {
        display:block;
    }
    .mobile {
        display:none;
    }
}
@media screen and (min-width: 1000px) {
    .horizontal li.mobile {
        display: none;
    }
    .horizontal li {
        display: inline-block;
    }
    .main {
        padding-left: calc((100vw - 1000px) / 2);
        padding-right: calc((100vw - 1000px) / 2);
    }
    .widemain {
        padding-left: calc((100vw - 1500px) / 2);
        padding-right: calc((100vw - 1500px) / 2);
    }
    .ultrawidemain {
        padding-left: 2vw;
        padding-right: 2vw;
    }
}
.nomargin{
    margin: 0;
}
.nopadding{
    padding: 0;
}
.nowrap{
    text-wrap: nowrap;
}
.slideshow_container{
    max-width: 1000px;
    position: relative;
    /*margin: auto;
    box-sizing: border-box;*/
}

#prev, #next{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

#prev{
    left: 0;
}

#next{
    right: 0;
}

#prev:hover, #next:hover{
    background-color: rgba(0,0,0,1);
}

@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

@keyframes fadeOut {
    from {opacity: 1}
    to {opacity: 0}
}

/*.slide{*/
/*    !*animation: fadeInOut 10s linear 1 forwards;*!*/
/*    vertical-align: middle;*/
/*}*/

.none{
    display: none;
}

.fadeIn{
    animation: fadeIn 2s linear 1 forwards;
}

.fadeOut{
    animation: fadeOut 2s linear 1 forwards;
}

.justified {
    text-align: justify;
    text-justify: inter-word;
}

.text {
    font-size: 1em;
}

.text-larger {
    font-size: 1.5em;
}

.simple-list {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.textbox{
    padding: 0 15px;
}
.textbox:not(.simple-background){
    background-color: cornsilk;
    border-color: white;
    border-style: solid;
    border-width: 1px;
}

.width150px {
    width: 150px;
}
.width300px {
    width: 300px;
}
.width333px {
    width: 333px;
}

.height450px{
    max-height: 450px;
    height: auto;
    width: auto;
}
.height600px{
    max-height: 600px;
    height: auto;
    width: auto;
}
.height900px{
    max-height: 900px;
    height: auto;
    width: auto;
}
table {
    border-collapse: collapse;
}

.table_subtle th, .table_subtle td {
    border: none;
}

table th,
td {
    padding: 5px;
    border: 1px solid;
}
.white-background{
    background-color: cornsilk;
}
td p{
    padding: 0;
    margin: 0;
}
.padded-bottom{
    padding-bottom: 12px;
}
.inline_image {
    float: left;
    padding: 10px;
}

.clipboard_able{
    cursor: pointer;
}

.float-right{
    float: right;
}

.padded-right{
    margin-right: 32px;
}

.border-black-1px{
    border: 1px solid black;
}

.gray{
    color:gray;
}