html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #000000;
    background-image: url("../gfx/main_background.svg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
}

#site-header {
    position: fixed;
    z-index: 5;
    top: calc(20%);
    left: 0px;
    right: 0px;
    text-align: center;
    vertical-align: middle;
    opacity: 0.2;
}

#site-header h1 {
    margin: 0px;
    padding: 0px;
    font-size: 25vw;
    color: rgb(59,113,137);
}

div.smilie_wrapper {
    z-index: 10;
    position: fixed;
    left: -20px;
    top: -20px;
    padding: 0px;
    margin: 0px;
    background-color: transparent;
    /* background-image: url("../gfx/seeque_smilie.svg"); */
    background-image: url("../get_smilie.php");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0.8;

    /*background-color: black;*/
}

#menu-top {
    z-index: 11;
    position: fixed;
    width: auto;
    top: -5px;
    left: auto;
    right: auto;
    border: 2px solid #000000;
    padding: 5px 2px 2px 2px;
    background: rgba(59,113,137,0.8);
    background: linear-gradient(180deg, rgba(136,169,182,0.8) 0%, rgba(59,113,137,0.8) 75%, rgba(9,33,57,0.8) 100%); 
}

#menu-top table {
    border: 0px;
    margin: 0px;
    width: auto;
    border-collapse: unset;
}

#menu-top table tr.menu-item td {
    padding: 0px 10px 0px 15px;
    line-height: 30px;
    font-weight: bold;
    font-size: 18px;
}

#menu-top table tr.menu-item td.menu-text {
    background: rgba(59,113,137,0.8);
    background: linear-gradient(180deg, rgba(59,113,137,0.8) 90%, rgba(9,33,57,0.8) 100%); 
    border-color: #092139;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
}

#menu-top table tr.menu-item td.menu-text:hover {
    border-color: #000000;
    border-style: solid;
    border-width: 1px;
    background: linear-gradient(180deg, rgba(242,195,0,0.8) 90%, rgba(0,0,0,0.8) 100%); 
}


#menu-left {
    z-index: 11;
    position: fixed;
    left: -5px;
    top: 20px;
    bottom: 20px;
    width: auto;
    border: 2px solid #000000;
    padding: 10px 10px 10px 5px;
    background: rgba(59,113,137,0.8);
    background: linear-gradient(180deg, rgba(59,113,137,0.8) 0%, rgba(136,169,182,0.8) 65%, rgba(155,183,194,0.8) 75%, rgba(9,33,57,0.8) 100%); 
    overflow-x: hidden;
    overflow-y: auto;
}

#menu-left table {
    border: 0px;
    margin: 0px;
    width: 100%;
    border-collapse: unset;
}

#menu-left table tr.menu-item td {
    padding: 0px 10px 0px 15px;
    line-height: 30px;
    font-weight: bold;
    font-size: 18px;
}

#menu-left table tr.menu-item td.menu-text {
    background: rgba(59,113,137,0.8);
    background: linear-gradient(180deg, rgba(59,113,137,0.8) 90%, rgba(9,33,57,0.8) 100%); 
    border-color: #092139;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
}

#menu-left table tr.menu-item td.menu-text:hover {
    border-color: #000000;
    border-style: solid;
    border-width: 1px;
    background: linear-gradient(180deg, rgba(242,195,0,0.8) 90%, rgba(0,0,0,0.8) 100%); 
}

#menu-left table tr.menu-item {
    border: 2px solid transparent;
}

#site_content {
    z-index: 9;
    position: fixed;
    left: 20px;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    border: 2px solid #000000;
    padding: 10px;
    background: rgba(59,113,137,0.8);
    background: linear-gradient(180deg, rgba(136,169,182,0.8) 0%, rgba(155,183,194,0.8) 75%, rgba(59,113,137,0.8) 100%); 
}

#content_scroller {
    margin: 0px;
    padding: 0px 0px 100px 0px;
    width: 100%;
    height: 100%;
    overflow: auto;
    overflow-y: scroll;
    overflow-x: hidden;
}

img.inlineimage {
    height: 200px;
    border: 1px solid #000000;
}

img.inlineimage-right {
    float: right;
    margin: 5px 5px 5px 10px;
}

.hidden {
    display: none;
}