@charset "utf-8";
/* ---------------------------------------------------------------------------------- 
CSS Document 
css_SiteLeftFrameOnly.css
Left Frame Layout
code from Dyanmic Drive.com
---------------------------------------------------------------------------------- */

body{
	background-color: #000000;
	border: 0;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size:medium;
	font-style: normal;
	font-weight: normal;
	height: 100%; 
	line-height: normal;
	margin: 0;
	max-height: 100%; 
	overflow: hidden;
	padding: 0;
	width:100%;
}

#framecontentLeft{
	bottom: 0; 
	height: 100%;
	left: 0;
	overflow: auto; /*Disable scrollbars. Set to "scroll" to enable*/
	overflow-x: hidden;
	position: absolute;
	top: 0;
	width: 190px; /*Width of frame div*/
}

#maincontent{
	bottom: 0;
	left: 200px; /*Set left value to WidthOfFrameDiv*/
	overflow: auto; 
	position: fixed;
	right: 0;
	top: 0; 

	
}

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

* html body{ /*IE6 hack*/
	padding: 0 0 0 200px; /*Set value to (0 0 0 WidthOfFrameDiv)*/
}

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

