body{
margin: 0px;
padding: 0;
border: 0px none;
overflow: hidden;
height: 100%; 
max-height: 100%;
background: white url('test/images/noimage.gif') repeat fixed;
}

#marginLeft, #marginRight{
position: absolute; 
top: 0; 
left: 0; 
width: 25px; /*Width of left frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: auto;
color: white;
}

#marginRight{
left: auto;
right: 0; 
width: 25px; /*Width of right frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: auto;
color: white;
}

#menuTop{
position: absolute;
top: 0;
left: 25px; /*Set left value to WidthOfLeftFrameDiv*/
right: 25px; /*Set right value to WidthOfRightFrameDiv*/
width: auto;
height: 50px; /*Height of top frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: white;
color: grey;
}

#maincontent{
position: fixed; 
top: 50px; /*Set top value to HeightOfTopFrameDiv*/
left: 25px; /*Set left value to WidthOfLeftFrameDiv*/
right: 25px; /*Set right value to WidthOfRightFrameDiv*/
bottom: 0;
overflow: auto; 
background: auto;
}

.contentmargin{
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

* html body{ /*IE6 hack*/
padding: 50px 25px 0 25px; /*Set value to (HeightOfTopFrameDiv WidthOfRightFrameDiv 0 WidthOfLeftFrameDiv)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

* html #menuTop{ /*IE6 hack*/
width: 100%;
}