body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%; 
background-color: black;
font-family: 'Century Gothic' , Arial;
	font-size: 12px;
	color: #aeaeae;
background-image: url(../Images/back.gif);
}

#framecontentTop{
position: absolute; 
top: 0; 
left: 0; 
width: 98%; 
height: 140px; /*Height of top frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
color: white;
}

#framecontentTop
{
	padding-top: 20px;
	padding-left: 20px;
	padding-right: -20px;
}


#maincontent{
position: fixed; 
top: 140px; /*Set top value to HeightOfTopFrameDiv*/
left: 0;
right: 0;
bottom: 0; /*Set bottom value to HeightOfBottomFrameDiv*/
overflow: auto; 
}

.innertube{
	margin: 0px 20px; /*Margins for inner DIV inside each DIV (to provide padding)*/

}

* html body{ /*IE6 hack*/
padding: 100px 0 0 0; /*Set value to (HeightOfTopFrameDiv 0 HeightOfBottomFrameDiv 0)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}



