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

#framecontent{
	position: absolute;
	top: 0;
	width: 100%;
	height: 40px; /*Height of frame div*/
	overflow: hidden;
	color: white;
	background: #333333;
	left: 0;
}


#maincontent{
	position: absolute;
	top: 0px; /*Set top value to HeightOfFrameDiv*/
	left: 0px;
	right: 2px;
	bottom: 0;
	overflow: scroll;
	background-color: #000000;
}

.innertube{
	margin-top: 0px;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-left: 80px;
}

* html body{ /*IE6 hack*/
padding: 40px 0 0 0; /*Set value to (HeightOfFrameDiv 0 0 0)*/
}

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

