/*
   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.
*/
 
A:link    { text-decoration: none }
A:active  { text-decoration: none }
A:visited { text-decoration: none }

/* 
   For cursor over (hover), use text-decoration to underline the text link and set the text
   color to Maroon.
*/

A:hover { text-decoration: underline; color: #800000 }

/* Class used for structuring font size. */
.anchorFont { font-size: 13px; }
