 /*Adapted from source code by http://www.dynamicdrive.com/style/ Dynamic Drive CSS Library*/




body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; max-height: 100%; }

 a:link {
    }
    
 a:visited {color: purple;}
 
 a:hover {color: red;}
 
 a:active {color: aqua;} 
   





#framecontent{
background-color: #efebca;
z-index: 0;
background-repeat: repeat;
/*background-image: url(images/sidebarbackground.png);*/
position: absolute;
top: 0;
bottom: 0; left: 0;
width: 200px; /*Width of frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
}

#maincontent{
background: 0px 0px;
color: black;
position: fixed;
top: 0; left: 200px; /*Set left value to WidthOfFrameDiv*/
right: 0;
bottom: 0;
overflow: auto; }


.edge{
     position: absolute;
     margin-left: 0px;
      margin-bottom: 0px;
      margin-right: 0px;
     margin-top: 0px;
     background-repeat: repeat-y;
      background-image: url(images/deckle.jpg);
     }


.innertubemain{ /*Margins for inner DIV inside each DIV (to provide padding)*/
      padding-right: 20px;                                                               
     padding-left: 50px;                                                               
     margin-right: 15px; margin-bottom: 15px; margin-top: 15px; margin-left: 20px; }

.innertubesidebar{ /*Margins for inner DIV inside each DIV (to provide padding)*/
      margin-right: 15px; margin-bottom: 15px; margin-top: 15px; margin-left: 15px; }

.center{text-align: center;}



* html body{ /*IE6 hack*/
     padding: 0 0 0 200px; /*Set value to (0 0 0 WidthOfFrameDiv)*/
      }


* html #maincontent{ /*IE6 hack*/
      height: 100%; width: 100%; }