<style type="text/css">

body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%; 

}




#framecontent{
position: absolute;
top: 0;
bottom: 0; 
left: 0;
width: 200px; /*Width of frame div*/
height: 1125px;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/

color: white;
background-color: #000; 

	padding:17px 17px 17px 17px;
box-shadow:#444444 4px 4px 4px;
top:-10000px?; /* IE hack to keep it out of the way */
-moz-border-radius: 0px 5px 15px;
  -webkit-border-radius: 0px 5px 15px;
  border-radius: 0px 5px 15px;
-moz-box-shadow:0 20px 20px rgba(200, 100, 100, 1);
  -webkit-box-shadow:0 20px 17px rgba(200, 100, 100, 1);
  box-shadow:0 20px 17px rgba(200, 100, 100, 1);
}

	

#maincontent{
position: fixed;
top: 0; 
left: 225px; /*Set left value to WidthOfFrameDiv*/
right: 0;
bottom: 0;
overflow: auto; 
background: #000;
}

.innertube{
margin: 15px; 

	}
/*Margins for inner DIV inside each DIV (to provide padding)*/
}

* html body{ /*IE6 hack*/
padding: 0 0 0 200px; /*Set value to (0 0 0 WidthOfFrameDiv)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}



</style>