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

#sidebar {
 position: fixed;
 top: 0;
 bottom: 0;
 left: 0;
 width: 388px; /*Width of frame div*/
 height: 100%;
 overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
}

#maincontent {
 background-image: url(shadow.gif); 
 position: fixed;
 top: 0;
 left: 388px; /*Set left value to WidthOfFrameDiv*/
 right: 0;
 bottom: 0;
 overflow: auto;
}

/*Margins for inner DIV inside each DIV (to provide padding)*/ 
#maincontent .innertube{ margin: 40px 32px;} 
#sidebar  .innertube{ margin: 0;}

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

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