body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
}

#NavBar{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 145px; /*Width of frame div*/
	height: 100%;
	overflow: scroll; /*Disable scrollbars. Set to "scroll" to enable*/
	background:white;
	color: white;
}

#maincontent {
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 150px;
	overflow: auto
}

* html body{ /*IE6 hack*/
padding: 0 0 0 100px; /*Set value to (0 0 0 WidthOfFrameDiv)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

.innertube   { margin: 40px }