body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%; 
}

#framecontentLeft{
position: absolute; 
top: 0; 
left: 0; 
width: 160px; /*Width of left frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: #fff;
color: black;
}

#framecontentTop{
position: absolute; 
top: 0; 
left: 160px; /*Set left value to WidthOfLeftFrameDiv*/
right: 0;
height: 116px; /*Height of top frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: white;
color: black;
}

#framecontentBottom{
position: absolute; 
top: auto; 
left: 160px; /*Set left value to WidthOfLeftFrameDiv*/
bottom: 0;
right: 0;
height: 35px; /*Height of bottom frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: white;
color: black;
}

#maincontent{
position: fixed; 
top: 116px; /*Set top value to HeightOfTopFrameDiv*/
left: 160px; /*Set left value to WidthOfLeftFrameDiv*/
right: 0;
bottom: 35px; /*Set bottom value to HeightOfBottomFrameDiv*/
overflow: auto; 
background: #fff;
}

.innertube{
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

* html body{ /*IE6 hack*/
padding: 116px 0 35px 160px; /*Set value to (HeightOfTopFrameDiv  0 HeightOfBottomFrameDiv WidthOfLeftFrameDiv)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

* html #framecontentTop, * html #framecontentBottom{ /*IE6 hack*/
width: 100%;
}
