/* 4 div layout - banner across the top        */
/*              - navbar on left side          */
/*              - main contents in the middle  */
/*              - footer below main comments   */
/*              - commentary on the right side */

body 
{ background-color: #fff; 
  color: black;
  font-family: sans-serif;
  font-size: 9pt; 
  margin: 0px;
  padding: 0px;
  width: 800px;
  height: 600px;
  outline: none;
}


/* ------------ main div areas --------------------- */
div#banner 
{ background: url(../images/testbanner.gif) 0px 0px no-repeat;
  margin: 5px 5px 0px 0px;
  padding: 5px 0px 0px 0px;
  height: 60px;
  width: 800px;
}


div#main 
{ top: 45px;
  width: 660px;
  margin: 0px 0px 10px 140px;
  padding-left: 5px;
  font-family: arial, verdana, sans-serif;
}


div#footer 
{ color: rgb(70%,60%,50%);
  border-top: 1px solid rgb(60%,50%,40%);
  text-align: right; 
  font-size: 0.9em;
  margin: 20px 10px 0px 10px; 
  font-style: italic;
}
