/* CSS Document */
body
  {
  margin: 0;
 /* padding: 1em 1em 1em 14em;       */
  color: #000;

  }
div#header
  {
  position: absolute;
  top: 0px;
 width: 740px;        
  }
    
@media screen
  {
  div#header
    {
    position: fixed;
    }
  /* Don't do this at home */
  * html
    {
    overflow-y: hidden;
    }
  * html body
    {
    overflow-y: auto;
    height: 100%;
    }
  * html div#header
    {
    position: absolute;  
    }
  /* All done. */
  }

