body {
  background: #ffffff;
  font-family: Verdana, sans-serif;
  margin-left: 5%;
  margin-right: 5%
}



a {
/* color: #000000; */
  font-weight:bold;
}


#leftFrame{
position: absolute;
top: 0;
bottom: 0; 
left: 0;
width: 0px; /*Width of frame div*/
height: 100%;
overflow: hidden;
}



#mainFrame{
position: fixed;
top: 0;
left: 0px; /*Set left value to WidthOfFrameDiv*/
right: 0;
bottom: 0;
overflow: auto; 

}


.innerTube{
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}
 
 ol {
   list-style: none;
counter-reset: item;
 }
 li {
    counter-increment: item;
    margin-bottom: 5px;
 }
 
 li:before {
   margin-right: 10px;
   content: "(" counter(item,lower-latin) ")";
 }