#header {
    position: absolute;
    height: 40px;
    right: 0px;
    left: 100px;
    top: 0px;
    background-color: #AAA;
    padding: 10px 10px;
}

#menu {
    position: absolute;
    bottom: 0px;
    width: 100px;
    left: 0px;
    top: 0px;
    background-color: #888;
    padding: 40px 0px 0px;
}

#content {
    position: absolute;
    left: 100px;
    top: 40px;
    right: 0px;
    bottom: 0px;
    background-color: #EEE;
    overflow-y: scroll;
}

#menu .button {
    background-color: transparent;
    float: left;
    clear: left;
    width: 100%;
    text-align: center;
    padding: 3px 0px;
}

#menu .button:hover {
    background-color: lightgray;
}

#content-new-view {
    float: right;
    padding: 10px;
}