div#fixedbox
  {
  position: absolute;
  top: 40%;
  left: 0px;
  width: 109px;
  /*height: 151px;*/
  min-height:218px;
  background-image: url(../images/floating-box.gif);
  background-repeat: no-repeat;
  text-align: center;
  }
@media screen
  {
  div#fixedbox
    {
    position: fixed;
    }
  /* Don't do this at home */
  * html
    {
    overflow-y: hidden;
    }
  * html body
    {
    overflow-y: auto;
    height: 100%;
    font-size: 100%;
    }
  * html div#fixedbox
    {
    position: absolute;  
    }
  /* All done. */
  }