body {
    font-family: Verdana, sans-serif;
    font-size: 8pt;
    direction: ltr;
}

#toolbar {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    height: 35px;
    width: 100%;
}

#main {
    margin-top:29px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#login {
    z-index: 1;
    border-radius: 15px;
    background: rgba(240, 248, 255, 0.9); /*aliceblue with opacity*/
    margin-top: 5px;
}

#login_form {
    line-height: 24pt;
    padding: 5px 10px 0 10px;
}

#login_form input, #password_reset_form input {
    background: none white;
    border: 1px solid #5C6D75;
    border-radius: 5px;
    width: 119px;
    height: 20px;
    margin-top: 0;
    text-align: center;
}

#login_form select, #password_reset_form select {
    background: none white;
    border: 1px solid #5C6D75;
    border-radius: 5px;
    width: 125px;
    height: 24px;
    margin-top: 0;
    font-size: 8pt;
}

#login_form input[type="submit"], #password_reset_form input[type="submit"] {
    width: 125px;
    height: 24px;
}

#login_form input[type="input"]:focus, input[type="password"]:focus, #password_reset_form input[type="input"]:focus {
    outline: none;
}

#password_reset {
    display: none;
    text-align: center;
    position: absolute;
    top: 15%;
    background: rgba(240, 248, 255, 0.95); /*aliceblue with opacity*/
    border: 1px solid dimgrey;
    border-radius: 15px;
    padding: 5px 10px 5px 10px;
}

#password_reset_opener {
    display: flex;
    justify-content: center;
}

#password_reset_opener_button {
    text-align: center;
    text-decoration: underline;
    height: 24px;
    line-height: 22px;
}

#password_reset_closer {
    text-align: center;
    position: absolute;
    right: -5px;
    top: -5px;
    background: white;
    font-weight: bold;
    border: 1px solid gray;
    border-radius: 15px;
    padding: 5px 10px 5px 10px;
}

#password_reset_content {
    padding-bottom: 10px;
}

#password_reset_form input, #password_reset_form select {
    margin-bottom: 5px;
}

#password_reset a {
    font-weight: bold;
    text-decoration: none;
}

#password_reset a:visited {
    color: black;
    text-decoration: none;
}

#register {
    height: 700px;
    width: 480px;
    margin: -50px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#register_form {
    width: 250px;
    margin-top: 100px;
    padding-top: 50px;
}

#register_form input,select {
    width: 225px;
    height: 34px;
    margin-top: 10px;
    border: none;
    font-size: 18px;
    padding: 0 5px 0 5px;
    text-align: center;
}

#register_form input[type="checkbox"] {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

#register_form input[type="submit"] {
    width: 230px;
    height: 65px;
}

#register_form input[type="input"]:focus, input[type="password"]:focus {
    outline: none;
    width: 215px;
}

#register_form_container {
    display: flex;
    margin-top: 10px;
    align-items: end;
}

label a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

#error {
    display: none;
    position: absolute;
    z-index: 2;
    border: 1px solid red;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.97); /*white with opacity*/
    width: 200px;
    height: 200px;
    padding: 10px;
    margin-top: -400px;
}

#error a {
    color: black;
    font-weight: bold;
    text-decoration: none;
}

#error_closer {
    position: absolute;
    border: 2px solid white;
    border-radius: 15px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    font-size: 12pt;
    font-weight: bold;
    background-color: red;
    cursor: pointer;
    color: white;
    margin-top: -16px;
    margin-left: 190px;
}

#error_message {
    text-align: center;
    margin-top: 10px;
    line-height: 15px;
}

#slideshow_container {
    min-width: 1050px;
    height: 336px;
    margin-top: -10px;
    display: flex;
    align-items: inherit;
    /*justify-content: space-between;*/
    font-family: "Noto Sans", serif;
}

#slideshow {
    width: 100%;
    /*border: 1px solid #aa00aa;*/
}

.slideshow_text {
    /*width: 450px;*/
    /*margin: 55px 50px 0 75px;*/
    /*padding-left: 75px;*/
    width: 520px;
    margin: 55px 15px 0 40px;
    padding-left: 70px;
    height: 200px;
    float: left;

    /*border: 1px solid #00FF00;*/
}

.slideshow_text h1 {
    margin-bottom: 5px;
}

.slideshow_text p {
    font-size: 9pt;
    margin-top: 0px;
    /*height: 115px;*/
    /*overflow-y: auto;*/
}

.slideshow_image {
    width: 270px;
    height: 274px;
    margin-bottom: 50px;
    float: left;
}

.slideshow_button {
    width: 107px;
    height: 115px;
    border: none;
}

.slideshow_button_right {
    /*transform: rotate(180deg);*/
    -moz-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
    margin-left: 5px;
}

.slideshow_button_left {
    margin-right: 5px;
}

#info {
    display: none;
    margin-left: -10px;
    border: 1px solid grey;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97); /*white with opacity*/
    width: 500px;
    min-height: 600px;
    position: absolute;
    margin-top: -290px;
    z-index: 3;
}

#info iframe {
    margin: 10px;
    border: none;
    height: 96%;
    width: 96%;
    max-width: inherit;
    min-height: inherit;
    border-radius: 15px;
}

#info_content {
    width: 100%;
    max-width: 500px;
    min-height: 600px;
}

#info_closer {
    position: absolute;
    border: 2px solid white;
    border-radius: 15px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    font-size: 12pt;
    font-weight: bold;
    background-color: #4cb3f6;
    cursor: pointer;
    color: white;
    margin-top: -5px;
    margin-left: 96%;
}

#footer {
    display: flex;
    width: 100%;
}

#footer_info_list {
    display: flex;
    align-content: center;
    justify-content: center;
    width: 100%;
}

#footer_usk {
    width: 100px;
    height: 100px;
    float: left;
}

#footer_link_list {
    width: 500px;
    height: 100%;
    text-align: center;
    align-content: inherit;
    padding: 0 20px 0 20px;
}

#footer_link_list a{
    font-weight: bold;
    color: #000;
    margin: 0 10px 10px 0;
    line-height: 15pt;
}

#banner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 15px 0;
}

#banner_list {
    width: 100%;
    max-width:600px;
    height:31px;
    overflow:hidden;
    border:none;
}

#banner table {
    width: max-content;
    border-spacing: 10px;
    border-collapse: separate;
    margin: -10px 0 0 0;
}

@media only screen and (max-width: 1076px) {
    #slideshow_container {
        display: none;
    }

    #info {
        width: 75%;
        margin-top: 50px;
    }

    #info_closer {
        margin-left: 95%;
    }
}

@media only screen and (max-width: 605px) {
    #toolbar/*, #info_screenshow*/ {
        display: none;
    }
    #main {
        margin-top: 0;
    }
    body {
        background-position-y: 0 !important;
    }
    #login_form {
        width: 50%;
        text-align: center;
    }
}

@media (max-width: 650px) {
    body #loginbar #loginelements {
        position: relative;
        left: 0;
        top: 0;
        width: unset;
        text-align: center;
    }

    #login {
        width: min-content;
        padding: 0 10px 0 10px;
    }

    #info {
        width: 75%;
        margin-top: -115px;
    }

    #error {
        width: 200px;
        height: 200px;
        margin-left: 0;
        margin-top: 0;
    }
}

@media (min-width: 650px) and (max-width: 1024px) {
    #footer {

    }
}