@media screen
{
  /* all */
  body
  {
    margin: 0;
    padding: 0 0 0 200px;
    background: black;
    height: 100%;
  }
  div#fixedBox
  {
    position: fixed;
    width: 220px;
    height: 2000px;
    top: 0;
    left: 0;
    margin: 0;
    background: #200020;
  }
  div#content
  {
    height: 100%;
    background: black;
    overflow-x: auto;
    overflow-y: scroll;
  }
  /* IE 5.5, IE 6 */
  * html
  {
    overflow-y: hidden;
  }
  * html body
  {
    overflow-y: hidden;
    height: 100%;
    padding: 0 0 0 200px;
  }
  * html div#fixedBox
  {
    position: absolute;  
    height: 100%;
  }
}