body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%; 
}
a:link { text-decoration:none; color: black;}
a:visited { text-decoration:none; color: black;}
a:hover { text-decoration:overline underline; color: #FF3F00;}
a:active { text-decoration:underline; color: red;}

#LeftPart{
position: absolute; 
border:none;
top: -20px; 
left: 0; 
width: 236px; /*Width of left frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: white;
color: white;
}


#TopPart{ 
position: absolute; 
top: 0;
left: 236px; /*Set left value to WidthOfLeftFrameDiv*/
right: 0;
width: 1043px;
height: 145px; /*Height of top frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: white;
color: white;
}

#MainPart{
position: fixed; 
left: 236px; /*Set left value to WidthOfLeftFrameDiv*/
top: 145px; /*Set top value to HeightOfTopFrameDiv*/
right: 0;
bottom: 0;
overflow: auto; 
background: #fff;
}


* html body{ /*IE6 hack*/
padding: 150px 0 0 290px; /*Set value to (HeightOfTopFrameDiv 0 0 WidthOfLeftFrameDiv)*/
}

* html #MainPart{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

* html #TopPart{ /*IE6 hack*/
width: 1043px;
}
