  /*this is what we want the div to look like
    when it is not showing*/
  div.multi-invisible{
    /*make invisible*/
    display:none;
  }
  /*this is what we want the div to look like
    when it IS showing*/
  div.multi-visible{
    /*make visible*/
    display:block;
    /*position it 200px down the screen*/
    position:absolute;
    top:0px;
    left:0;
    width:986px;
    height:986px;
    text-align:center;
    /*in supporting browsers, make it
      a little transparent*/
    /* background:#f7f7d6; */
    border-top:1px solid #b0a86e;
    border-bottom:1px solid #b0a86e;
    border-left:1px solid #b0a86e;
    border-right:1px solid #b0a86e;

  }
