﻿body {
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    height: 100%; 
    max-height: 100%; 
}

#treebox {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 150px;  /* Width of Left */
    height: 100%;
    overflow: hidden; 
    background-color: #0F0F0F;
}

#BarMenu 
{
    width: 150px;
    height: 600px;
}

#rightbox {
    position: absolute; 
    top: 0; 
    right: 0; 
    width: 5px;   /* Width of Right */
    height: 100%;
    overflow: hidden; 
    background-color: #0F0F0F;
}

#headerbox {
    position: absolute;
    top: 2px; 
    left: 150px;  /* Width of Left  */
    right: 5px;   /* Width of Right */
    width: auto;
    height: 42px; /*Height of Top   */
    overflow: hidden; 
    background-color: #0F0F0F; 
}

#copyrightbox {
    position: absolute;
    bottom: 0;
    left: 150px;  /* Width of Left    */
    right: 5px;   /* Width of Right   */
    width: auto;
    height: 15px; /* Height of Bottom */
    overflow: hidden;
    background-color: #0F0F0F;
    color: #A0A0A0;
    font-family: Tahoma;
    font-size: 10px;
}

#mainbox {
    position: fixed; 
    top: 44px;    /* Height of Top    */
    bottom: 15px; /* Height of Bottom */
    left: 150px;  /* Width of Left    */
    right: 5px;   /* Width of Right   */
    overflow: hidden;
    background-color: blue; 
}


* html body { /*IE6 hack*/
    padding: 44px 5px 15px 150px; /*HeightTop WidthRight HeightBottom WidthLeft*/
}

* html #mainbox { /*IE6 hack*/
    height: 100%; 
    width: 100%; 
}

* html #headerbox, * html #copyrightbox { /*IE6 hack*/
    width: 100%;
}

