/* TOP BAR MENU*/
#topbar {
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    z-index: 1900;
}

.topbarbutton {
    float: left;
    width: 50px;
    margin-left: 5px;
    margin-top: 10px;
}
.topbarcenter{
    float: left;
    width: calc(100% - 105px);
    height: 100%;
    position: relative;
}
.topbartitle {
    position: absolute;
    width: 100px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin: -42px 0 0 -80px;
}
.topbaricon{
    float: left;
    width: 50px;
}
.topbaricon img{
    display: block;
    margin: 2px 0 0 0;
    width: 45px;
    height: 45px;
}

/* NAV MENU */
#navmenu {
    position: fixed;
    top: 50px;
    left: 0px;
    width: 300px;
    height: calc(100% - 50px);
    display: block;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform: translateX(-300px);
    z-index: 1900;
}

/* MAIN CONTENT */
#main {
    margin-top: 50px;
    width: 100%;
}
.mainview {
    /* max size : 1400px and centered for width > 1400px */
    width: min(1400px,100%);
    margin-left: max(0px, calc( (100% - 1400px) / 2) );
    min-height: 100%;
    padding: 20px;
}

/* Footer */
.footer {
    text-align: right;
    padding: 20px;
}
