body{
margin: 0px;
padding: 0px;
border: 0px;
overflow: hidden;
height: 100%; 
max-height: 100%; 
}

a:link {text-decoration:none; color:White}
a:visited {text-decoration:none; color:White}
a:hover 	{text-decoration:none; color:Gold}
a:active {text-decoration:none; color:White}

#framecontentTop{
position: absolute;			
padding-top: 0px;
left: 0px; /*Set left value to WidthOfLeftFrameDiv*/
top: 0px;
width: 2000px;
height: 100px; /*Height of top frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/	
background-color: black;
color: white;
}
			
#framecontentLeft{
position: absolute;
padding-top: 0px;
left: 100px;			
top: 100px;  
width: 250px; /*Width of left frame div*/
height: 1000px;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/	
background-color: transparent;
color: white;
}
			
#maincontent{
position: absolute;
left: 350px; /*Set left value to WidthOfLeftFrameDiv*/
top: 100px; /*Set top value to HeightOfTopFrameDiv*/
width: 400px;
height: 1000px;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/ 
background-color: transparent;
color: white;
}

.innertube{
margin: 0px; /*Margins for inner DIV inside each DIV (to provide padding)*/
padding: 0px;
border: 0px;
}

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

* html #framecontentLeft{ /*IE6 hack*/
width: 250px;
height: 1000px; 
}

* html #maincontent{ /*IE6 hack*/
width: 400px;
height: 1000px; 
}
