/*=====FRAMES.CSS=====*/

#framecontentLeft, #framecontentBottom{
position: absolute; 
top: 0;
left: 0;
width: 155px; /*Width of left frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
/*background-color: 222222;   */
color: white;
}
#framecontentBottom{
top: auto;
left: 155px; /*Set left value to WidthOfLeftFrameDiv*/
width: auto;
bottom: 0;
right: 0;
height: 40px; /*Height of bottom frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
/*background-color: #222222; */
color: white;
}

#maincontent{
position: fixed; 
top: 0;
left: 155px; /*Set left value to framecontentLeft*/
right: 0;
bottom: 40px; /*Set bottom value to framecontentBottom*/
overflow: auto; 
/* background: #222222;  */
}

.innertube{
margin: 5px; /*Margins for inner DIV inside each DIV (to provide padding)*/
margin-top: 0;margin-bottom: 0;
width: 90%;
}

* html body{ /*IE6 hack*/
padding: 0 0 40px 155px; /*Set value to (0 0 HeightOfTopFrameDiv WidthOfLeftFrameDiv)*/
}

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

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