* {
    margin:0;
    padding:0;
}



#topbar {
    width: 100%;
    height: 128px;
    
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ED6A5A;
    
    overflow: hidden;
    
}

#sidebar {
    width: 192px;
    height: calc(100% - 192px);
    
    position: fixed;
    top: 128px;
    left: 0;
    background-color: #522B29;
    
    overflow: auto;
}

#links {
    width: 192px;
    height: 64px;

    position: fixed;
    bottom: 0;
    left: 0;
    background-color:#034732;

    overflow: hidden;
    font-size: 0;
}

#page {
    width: calc(100% - 192px);
    height: calc(100% - 128px);
    
    position: absolute;
    top: 128px;
    left: 192px;
    
    overflow: auto;
}




.pagelink {
    color: #FEE;
}
.pagelink:hover {
    background-color: #035E7B;
    cursor: pointer;
}

