/* CSS Document */

 <!---  Fixed side bar and footer -->
 
body{
  margin:0;
  padding:0 0 40px 0;
 } 
 div#footer{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:40px;
 }
 div#footeroffscreen{
  position:absolute;
  bottom:-1000;
  left:0;
  width:100%;
  height:130px;
 }
 div#left-sidebar
 {
  position:absolute;
  top:0;
  left:0;
  width:200px;
  height:100%;
 }

 @media screen{
  body>div#left-sidebar{
   position:fixed;
  }
  body>div#footer{
   position:fixed;
  }
 body>div#footeroffscreen{
  position:absolute;
  bottom:-1000;
  left:-1000;
  width:100%;
  height:130px;
 }
 
 }
 * html body{
  overflow:hidden;
 } 
 * html div#content{
  height:100%;
  overflow:auto;
 }