 
      a:link, a:visited { /* this defines unclicked, and clicked link properties */
 
      text-decoration: none; /* you can set this to underline, or none. */
 
      color: #000000; /* sets color, hexadecimal, right now it is black */
 
      font-weight: bold; /* sets your font to bold. bold or none are most common here */
 
      }
   
      a:hover, a:active { /* defines mouseover, and clicked/processing links */
   
      text-decoration: underline; /* set this to the opposite of what rested state links are for it to underline on mouseover */
   
      color: #000000;
  
      font-weight: bold;
 
      }
 
      img { /* defines the css for the <img> tag */
 
      border: 0px; /* set border width to 0 pixels */
	  /* the above css is from http://www.daniweb.com/forums/thread11276.html and was contributed by rixius - thanks */

      }body {
	font-family: "Courier New", Courier, monospace;
	font-size: 10pt;
	color: #333333;
	letter-spacing: .3em;
}

