/*   Bare bones 3 column CSS layout  from   sitepoint.com/print/liquid-design     */


           #leftpanel { 
               position: absolute; 
               top: 15px; /* resize these bits to liking */ 
               left: 0px; 
               padding-left: 1px;
               width: 150px;
               align: left;
      }     

           #rightpanel { 
               position: absolute; 
               top: 15px; /* resize these bits to liking */ 
               right: 0px; 
               padding-right: 1px;
               width: 150px;
           } 

           #content { 
               position: absolute; 
               top: 25px; 
               padding-left: 25px; /* 20px to play with */ 
               padding-right: 20px; /* 20px to play with */ 
               align: center;
               width: 85%; 
}
              
