/* CSS Document */


#framecontent{
position: absolute;
top: 0;
bottom: 0; 
right: 0;
width: 154px; /*Width of frame div*/
height:578px;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background: #000000;
color: white;
position: fixed;
}

#maincontent{
position: fixed;
top: 0;
left: 0;
right: 200px; /*Set right value to WidthOfFrameDiv*/
bottom: 0;
overflow: auto; 
background: #fff;
}

.innertube{

}

* html body{ /*IE6 hack*/
padding: 0 200px 0 0; /*Set value to (0 WidthOfFrameDiv 0 0)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 


