/*
   The syntax of pseudo-classes:
   selector:pseudo-class { property:value }

   CSS classes can also be used with pseudo-classes:
   selector.class:pseudo-class { property:value }

   Use text-decoration to remove the line under text links. Think of these as predefined classes
   for the <A> tag. A:link is for normal, unvisited links; A:active is for link appearance while
   you're clicking; and A:visited is for previously visited links.

   For cursor over (hover), use text-decoration to underline the text link and set the text
   color to Maroon.

   Notes: 1. A:hover MUST come after A:link and A:visited in the CSS definition in order to
             be effective.
          2. A:active MUST come after A:hover in the CSS definition in order to be effective.
*/
 
A:link    { color: #3300FF; text-decoration: none }      	/* Unvisited link.  */
A:visited { color: #0000CC; text-decoration: none }     	/* Visited link.    */
A:hover   { color: #800000; text-decoration: underline } 	/* Mouse over link. */
A:active  { color: #3300FF; text-decoration: none }      	/* Selected link.   */

A.footer:link    {color: #FFFFFF; text-decoration: none }      	/* Unvisited link.  */
A.footer:visited {color: #F0FFFF; text-decoration: none  }     	/* Visited link.    */
A.footer:hover   {color: #800000; text-decoration: underline } 	/* Mouse over link. */
A.footer:active  {color: #FFFFFF; text-decoration: none  }     	/* Selected link.   */

/* Class used for structuring font size. */
.anchorFont { font-size: 13px; }

