/*check margin attribute details
  padding is set as Opera does not default to 0
  background is set as Net6 for MAC defaults to grey*/

body
{
      margin:0% 0% 0% 0%;
      padding:0% 0% 0% 0%;
      background:white;

}

#page
{
      position:absolute;
      top:10px;
      left:10px;

      margin:0% 0% 0% 0%;
      padding:0% 0% 0% 0%;

      background:gold;
}

#header
{
      height:125px; /*set to pixels as this will be the size of the banner irellevant of the resolution size*/
      background:gold;
      border:2px solid gold;
      text-align: center;
}

#menu
{
      float: left;
      width:9em;
      background: gold;

}

#content
{
      margin:0px 150px 0px 9em;
      border-left:2px solid blue;
      border-bottom:2px solid blue;
      border-top:2px solid blue;
      background:white;

}

#sponsor
{
      float:right;
      width:150px;
      padding:0px;
      background:gold;

}

#footer
{
      clear:both;
      background:white;
      border-left:2px solid blue;
      border-bottom:2px solid blue;

}

