table.menu	{
	position: absolute;
	border: 4px solid black;
	cursor: pointer;
	visibility: hidden;
}
#mainmenu	{
	position: static;
}
table.menu td	{
	color: #FFFFFF;            /* Must be the same as tdColor in the menu_script.js */
	background-color: #993366; /* Must be the same as tdBgColor in the menu_script.js */
	border: 0px;
	padding: 0px 8px 2px;
	font-family: Arial;
	font-size: 12pt;
	white-space: nowrap;
}

body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%;
scrollbar-face-color: #0000CC; 
scrollbar-arrow-color: gold;
scrollbar-DarkShadow-Color: black;
scrollbar-track-color: #CCCCCC;  
}

#framecontent{
position: absolute;
top: 0;
bottom: 0; 
left: 0;
width: 200px; /*Width of frame div*/
height: 100%;
overflow: scroll; /*Disable scrollbars. Set to "scroll" to enable*/
background: white;
color: white;
}

#maincontent{
position: fixed;
top: 0; 
left: 200px; /*Set left value to WidthOfFrameDiv*/
right: 0;
bottom: 0;
overflow: auto; 
background: url('img/lightgraybg.jpg');
}

}

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




