body {
  background-color: #AEB3DB;
  font-family: Arial, Helvetica, sans-serif;
  color: #003399;
  margin-right: 0px;
  margin-left: 0px;
  }
  /* 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:#0066CC;
  }
  A:visited {
  color:#6F6F6F;
  text-decoration: none;
  }
  A:active {
  text-decoration: none;
  }
  A:hover {
  background:#d8dbef;
  color#0066CC;
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); */
 

