body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%; 
}

#logo {
	background: url(logo3.jpg);
	background-repeat: repeat-y;
	height: 100%;
	padding:0px;
}

#framecontentLeft, #framecontentRight{
	position: absolute;
	top: 0;
	left: 0;
	width: 200px; /*Width of left frame div*/
	height: 100%;
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
	background-color: #1f1f1f;
	padding-left: 0px;
	padding-top: 0px;
}

#framecontentRight{
left: auto;
right: 0;
height: 100%;
width: 200px; /*Width of right frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: #1f1f1f;
}

#framecontentCenter{
	position: fixed;
	top: 0px; /*Set top value to HeightOfTopFrameDiv*/
	bottom: 0px; /*Set bottom value to HeightOfBottomFrameDiv*/
	left: 120px; /*Set left value to WidthOfLeftFrameDiv*/
	right: 120px; /*Set right value to WidthOfRightFrameDiv*/
	overflow: hidden;
	background: black;
	text-align: center;
}

* html body{ /*IE6 hack*/
padding: 0px 120px 0px 120px; /*Set value to (HeightOfTopFrameDiv WidthOfRightFrameDiv HeightOfBottomFrameDiv WidthOfLeftFrameDiv)*/
}

* html #framecontentCenter{ /*IE6 hack*/
height: 100%; 
width: 100%;
}
