  /*this is what we want the div to look like*/
  div.botright{
    display:block;

    /*set the div in the bottom right corner*/
    position:absolute;
    bottom:0;
    right:0;
    width:150px;

    /*give it some background and border*/
    background:#eee;
    border:2px solid #ddd;
  }

