/* For auto image centering in CSS:http://www.netmechanic.com/news/vol7/html_no10.htm */

/* Sets side page margins and inserts graph paper background */

body {
  background-image: url(page-graphics/graphp.gif);
  margin-left: 5%;
  margin-right: 5%;
  font-family: Comic Sans MS;
  color: #3333ff;
}

/* Sets header sizes.  Header h1 is large, but the only time it is used is i the main title. */

h1 {
  text-align: center;
  color: red;
  font-family: Comic Sans MS;
  font-size: 300%
}

h2 {
  text-align: center;  
  color: blue;
  font-family: Comic Sans MS;
}

h3 {
  text-align: center;  
  color: red;
  font-family: Comic Sans MS;
}

h4 {
  text-align: center;  
  color: black;
  font-family: Comic Sans MS;
}

/* Sets paragraph style */

p {
  text-align: justify;
  color: blue;
  font-family: Comic Sans MS;
}

/*Creates class "menulinks" for links to be used in the main navigation bar only*/

a.menulinks {
  font-family: arial;
  text-color black;
  text-decoration: none;
}

a.menulinks:link {
  font-family: arial;
  text-color: black;
  text-decoration: none;
}

a.menulinks:visited {
  font-family: arial;
  text-color: black;
  text-decoration: none;
}

a.menulinks:hover {
  font-family: arial;
  text-color: black;
  text-decoration: none;
  background-color: #99FF99;
}

a.menulinks:active {
  font-family: arial;
  text-color: black;  
  text-decoration: none;
  background-color: yellow;
}  

