div#fixedbox
  {
  position: absolute;
  top: 1em;
  left: 1em;
  width: 12em;
  }
div#fixedbox p
  {
  margin: 0;
  padding: 0;
  }
@media screen
  {
  div#fixedbox
    {
    position: fixed;
    }
  /* Don't do this at home */
  * html
    {
    overflow-y: hidden;
    }
  * html body
    {
    overflow-y: auto;
    height: 100%;
    padding: 0 1em 0 14em;
    font-size: 100%;
    }
  * html div#fixedbox
    {
    position: absolute;  
    }
  /* All done. */
  }
