
body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; max-height: 100%; }
#framecontentLeft, #framecontentTop{
position: absolute; top: 0; left: 0; width: 210px; /*Width of left frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: black;
color: white;
}
#framecontentTop{ left: 210px; /*Set left value to WidthOfLeftFrameDiv*/
right: 0;

width: auto;
height: 110px; /*Height of top frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: black;
color: white;
}
#maincontent{
position: fixed; left: 210px; /*Set left value to WidthOfLeftFrameDiv*/
top: 110px; /*Set top value to HeightOfTopFrameDiv*/
margin: 3px; 
right: 0;
bottom: 0;
overflow: auto; background: #F79C18;
}
.innertube{
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}
* html body{ /*IE6 hack*/
padding: 110px 0 0 210px; /*Set value to (HeightOfTopFrameDiv 0 0 WidthOfLeftFrameDiv)*/
}
* html #maincontent{ /*IE6 hack*/
height: 100%; width: 100%; }
* html #framecontentTop{ /*IE6 hack*/
width: 100%;
}


.buttonmenu{
list-style-type: none;
margin: 0;
padding: 0;
width: 205px;
}

.buttonmenu li a{
color: #F79C18;
display: block;
width: 100%;
padding: 2px 4px;
text-decoration: none;
font-weight: bold;
border: 0px solid;
border-color:#D5BFD0 #5A3A54 #5A3A54 #D5BFD0; /*light dark dark light*/
background-color: black;
text-decoration:none;
}


.buttonmenu li a:visited{
color: #F79C18;
}

.buttonmenu li a:hover, .buttonmenu li a:active{
color: black;
background-color: #CE3931;
}

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 20px;
left: -150px; /*position where enlarged image should offset horizontally */

}