/*  Settings for LINKS  */
/*  Class nounder  */
a.nounder {
  text-decoration: none;
  }
/*  Affects all */
a:link { 
  color: blue;
  text-decoration: underline;
  }
a:visited { 
  color: green;
  text-decoration: none;
  }
a:hover { 
  color: red;
  text-decoration: underline
  }
a:active { 
  color: white;
  text-decoration: none;
  }

/* -------------------------------------------------------------------- */

/*  For Displaying ARTICLES - TITLE, SubTitle and Body text  */
.ptitle {
  font-family: Arial, Verdana, sans-serif;
  color: #003300;
  font-size: 24px;
  font-weight: bold;
  }
.psubtitle { 
  font-family: Arial, Verdana, sans-serif;
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  }
.pbody { 
  font-family: Arial, Verdana, sans-serif;
  color: #000000;
  font-size: 16px;
  }
  
/* -------------------------------------------------------------------- */