body {
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  color: #black;
  margin-top: 0px;
  margin-right: 20px;
  margin-bottom: 0px;
  margin-left: 20px;
  background-repeat: repeat;
    }
  /* note - this is how you make a comment in a CSS file. */
/* you want to always put margins, padding, and borders in this sequence:
  top, right, bottom, left - otherwise you get in TRouBLe. */
/*always end every line of css inside the curly braces with a semicolon -
  even the last one, which CAN be omitted from the last one. Don't omit it -
  trust me on this.*/
/* always make the tag capitalized in the CSS file - instead of a: hover,
  make it A:hover. It doesn't matter, in the HTML file itself where it is
  used, but in the CSS file, it is very important that it be always
  capitalized.*/
A:link {
  color:#0000FF;
  text-decoration: underline;
  }
  A:visited {
  color:#996699;
  text-decoration: none;
  }
  A:active {
  color:#CC99FF
  text-decoration: none;
  }
  A:hover {
  background:#800080;
  color:#ffffff;
text-decoration: none;
}
A {text-decoration: none;}
  /* if you want this to work in Netscape, you have to include the full URL,
  not just the local file name - in other words, it should look like this:
  cursor: url(http://www.blah.com/images/eyes.ani); */
H1 {font-family: Comic Sans MS, Verdana, Helvetica, Arial, sans-serif; font size: 25px; font-weight: 600;}
H2 {font-family: Comic Sans MS, Verdana, Helvetica, Arial, sans-serif; font size: 20px; font-weight: 500;}
H3 {font-family: Comic Sans MS, Verdana, Helvetica, Arial, sans-serif; font size: 18px; font-weight: 400; text-align: center;}
H4 {font-family: Comic Sans MS, Verdana, Helvetica, Arial, sans-serif; font size: 15px; font-weight: 300; text-align: center;}
P {font-family: Helvetica, Arial, sans-serif; font-size: 16px; text-align: left;}
P.menu {font-family: Comic Sans MS, Verdana, Helvetica, Arial, sans-serif; font-size: 12px; text-align: center;}
P.small {font-family: Comic Sans MS, Verdana, Helvetica, Arial, sans-serif; font-size: 11px; text-align: center;}
P.right {font-family: Comic Sans MS, Verdana, Helvetica, Arial, sans-serif; font-size: 14px; text-align: right;}
P.center {font-family: Helvetica, Arial, sans-serif; font-size: 16px; text-align: center;}
tbody {font-family: Comic Sans MS, Verdana, Helvetica, Arial, sans-serif; font-size: 12px; text-align: center;}
