body{
	margin: 0;
	padding: 0;
	border: 0;
	height: 100%; 
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: small;

}
A:active{
	color: black;
	font: normal normal normal 12 Arial, Helvetica, Sans-Serif;
}
A:link{
	color: black;
	font: normal normal normal 12 Arial, Helvetica, Sans-Serif;
}
A:visited{
	color: black;
	font: normal normal normal 12 Arial, Helvetica, Sans-Serif;
}

td{
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: small;
}

#framecontentLeft, #framecontentRight{
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 175px; /*Width of left frame div*/
	background-color: white;
	color: black;
	text-align: center;
}


#framecontentRight{
	left: auto;
	right: 0; 
	width: 175px; /*Width of right frame div*/
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
	background-color: white;
	color: black;
}

#framecontentTop{
	position: absolute;
	top: 0;
	left: 175px; /*Set left value to WidthOfLeftFrameDiv*/
	right: 175px; /*Set right value to WidthOfRightFrameDiv*/
	width: auto;
	height: 120px; /*Height of top frame div*/
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
	background-color: white;
	color: black;
}

#maincontent{
	position: fixed; 
	top: 120px; /*Set top value to HeightOfTopFrameDiv*/
	left: 175px; /*Set left value to WidthOfLeftFrameDiv*/
	right: 175px; /*Set right value to WidthOfRightFrameDiv*/
	bottom: 0;
	overflow: auto; 
	background: #fff;
}

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

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

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

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