@charset "UTF-8";
/* CSS Document */

body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%; 
font-family: Arial, Helvetica, sans-serif,FreeSans;
font-size:13px; 
}

#framecontentTop, #framecontentBottom{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px; /*Height of top frame div*/
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
	background-color:#191919;
	color: #000;	/*font-weight:bold;*/
}

#framecontentBottom{
top: auto;
bottom: 0; 
height: 70px; /*Height of bottom frame div*/
}

#maincontent{
position: fixed; 
top: 50px; /*Set top value to HeightOfTopFrameDiv*/
left: 0;
right: 0;
bottom: 70px; /*Set bottom value to HeightOfBottomFrameDiv*/
overflow: auto; 
background: #000;
color:#fff;

}

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

* html body{ /*IE6 hack*/
padding: 50px 0 50px 0; /*Set value to (HeightOfTopFrameDiv 0 HeightOfBottomFrameDiv 0)*/
}

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

