body {
	margin: 0;
	padding: 0;
	border: 0;
	overflow: hidden;
	max-height: 100%;
}

#framecontentLeft {
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	width: 160px; /*Width of left frame div*/
	overflow: enable; /*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;
	widows: 100%;
}

#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;
}


#maincontent2{
left: 0;
right: 0;
background: #fff;
width: 100%;
height: 100%;
}


.innertube{
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}
.innertube {
	margin: 15px;
	/*Margins for inner DIV inside each DIV (to provide padding)*/

}


.innertube2{
margin: 0px; /*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 body { /*IE6 hack*/
	padding: 116px 0 35px 160px;
	/*Set value to (HeightOfTopFrameDiv  0 HeightOfBottomFrameDiv WidthOfLeftFrameDiv)*/

}

* html #maincontent { /*IE6 hack*/
	height: 100%;
	width: 100%;
}


* html #maincontent2{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

* html #framecontentTop, * html #framecontentBottom{ /*IE6 hack*/
width: 100%;
}

* html #framecontentTop,* html #framecontentBottom { /*IE6 hack*/
	width: 100%;
}
