/* 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: 17%;
  border: 2px solid #dd0000;
  padding: 3px;
}
/* fright = simulation of right frame */
#fright
{
  position: absolute;
  left: 50%;
  top: 5%;
  width: 54%;
  margin-top: 0%;
  margin-left: 0%;
  border: 1px solid #dd0000;
  padding: 1%;
}
/* fmain = simulation of main content frame */
#fmain
{
  position: absolute;
  left: 20%;
  top: 1%;
  width: 75%;
  margin-top: 0%;
  margin-left: 0%;
  border: 1px solid #00dd33;
  padding: 2%;
}
