

#framecontentTop, #framecontentBottom{
position: absolute; 
top: 0; 
left: 0; 
width: 98%; 
height: 140px; /*Height of top frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
color: white;
}

#framecontentTop
{
	padding-top: 20px;
	padding-left: 20px;
	padding-right: -20px;
}

#framecontentBottom{
top: auto;
bottom: 0; 
height: 80px; /*Height of bottom frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
color: white;
}

#maincontent{
position: fixed; 
top: 140px; /*Set top value to HeightOfTopFrameDiv*/
left: 0;
right: 0;
bottom: 80px; /*Set bottom value to HeightOfBottomFrameDiv*/
overflow: auto; 
}

#maincontentleft{
position: fixed; 
top: 100px; /*Set top value to HeightOfTopFrameDiv*/
left: 0;
right: 120px;
bottom: 80px; /*Set bottom value to HeightOfBottomFrameDiv*/
overflow: auto; 
}
#maincontentright{
position: fixed; 
top: 100px; /*Set top value to HeightOfTopFrameDiv*/
left: 120px;
right: 0;
bottom: 80px; /*Set bottom value to HeightOfBottomFrameDiv*/
overflow: auto; 
}


.innertube{
	margin: 0px 20px; /*Margins for inner DIV inside each DIV (to provide padding)*/

}

* html body{ /*IE6 hack*/
padding: 100px 0 80px 0; /*Set value to (HeightOfTopFrameDiv 0 HeightOfBottomFrameDiv 0)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

