/* css styling for fixed frame on the right with main content in left frame */


#framecontent{
position: absolute;
top: 0;
bottom: 0; 
left: 0;
width: 175px; /*Width of frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background: #b1bff3;color: black;background: url(../images/bg502b.jpg);


}

#maincontent{
position: fixed;
top: 0; 
left: 175px; /*Set left value to WidthOfFrameDiv*/
right: 0;
bottom: 0;
overflow: auto;
background: url(../images/bg502.jpg);background-attachment: 
fixed;
color: white; 
}

.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%; 
}