/* ftop = simulation of top frame */
#ftop
{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  z-index: 1;
  background-color: #ccc;
  border: 2px solid #0000dd;
}
/* fleft = simulation of left frame */
#fleft
{
  position: fixed;
  left: 1%;
  top: 1%;
  width: 19%;
  border: 2px solid #dd0000;
  padding: 3px;
}

#fright
{
  position: absolute;
  left: 70%;
  top: 5%;
  width: 28%;
  margin-top: 0%;
  margin-left: 0%;
  border: 1px solid #dd0000;
  padding: 1%;
}

#fmain
{
  position: absolute;
  left: 1%;
  top: 1%;
  width: 64%;
  margin-top: 0%;
  margin-left: 0%;
  border: 1px solid #00dd33;
  padding: 2%;
}

