/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
*/
html {
    overflow: hidden;
}

body {
    height: 100%;
    overflow: auto;
}

#menu {
    float: left;
    width: 215px;
    overflow: auto;
    top: 0;
    bottom: 0;
    position: fixed;
    height: 100%;
    background-color: #transparent;
    background: transparent;
}

#content {
    height: 100%;
    margin: 0 0 0 215px;
    top: 0;
}

* html div#menu {
    width: 20%;
}

* html div#content {
    height: 100%;
    width: 80%;
    overflow: auto;
    position: absolute;
    margin: 0;
}
