body
{
margin: 0;
padding: 0;
border: 0;
overflow: auto;
height: 100%; 
max-height: 100%; 
background: #000000; color: yellow;
}




#header
{ 
right: 0px;
width: 100%;
height: 148px; /*Height of top frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background: #000000;
position: absolute; 
top: 0; 
left: 0; 
}

#content
{
position: absolute; 
left: 200px; /*Set left value to WidthOfLeftFrameDiv*/
top: 160px; /*Set top value to HeightOfTopFrameDiv*/
right: 0;
bottom: 0;
overflow: auto; 
background: #000000; 
}


#blueblock{
position: absolute;
width: 180px;
border-right: 1px solid #000;
padding: 0 0 0 0;
top: 200;
left: 10;
bottom: 0em;
font-family: 'Comic Sans MS';
font-size: 100%;
background-color: #000000;
color: #333;
overflow: auto;

}

* html #blueblock{ /*IE 6 only */
w\idth: 147px; /*Box model bug: 180px minus all left and right paddings for #blueblock */
}

#blueblock ul{
list-style: none;
margin: 0;
padding: 0;
border: none;
bottom: 0;
}

#blueblock li {
border-bottom: 3px solid #666666;
margin: 0;
}

#blueblock li a{
display: block;
padding: 5px 5px 5px 5px;
border-left: 8px solid #999999;
border-right: 9px solid #666666;
border-top: 1px solid #999999;
background-color: #000080;
color: #ffff00;
text-decoration: none;
width: 100%;
bottom: 0;
font-size: 16;
}

html>body #blueblock li a{ /*Non IE6 width*/
width: auto;
}

#blueblock li a:hover{
border-left: 10px solid #ffff00;
border-right: 10px solid #ffff00;
background-color: #ff0000;
font-weight: bold;
font-size: 20;
}


.innertube{
margin: 10px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

* html body{ /*IE6 hack*/
padding: 120px 0 0 200px; /*Set value to (HeightOfTopFrameDiv 0 0 WidthOfLeftFrameDiv)*/
}

* html #content{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

* html #header{ /*IE6 hack*/
width: 100%;


