@charset "utf-8";
/* CSS Document */
html {
    height: 100%;
}
body {
    font-family: Arial,Helvetica,sans-serif;
    padding: 0px;
    margin: 0px;
    height: 100%;
}

/* Right Scroll Bar */
#right_scroll {
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100%;
    background: url("img/buttons_bg.png");
    background-repeat: repeat-y;
    padding-left: 10px;
}

#right_scroll ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

#left_content {
    position: fixed;
    left: 0px;
    top: 0px;
    height: -moz-calc(100% - 61px);
    height: -webkit-calc(100% - 61px);
    height: calc(100% - 61px);
    width: -moz-calc(100% - 75px);
    width: -webkit-calc(100% - 75px);
    width: calc(100% - 75px);
    overflow: hidden;
}
/* End right scroll bar */

