/* how a link will appear to the user  */ A:link    {            text-decoration: underline;            color: #000000;           background: none;           } /* how an active link will appear to the user  */ A:active  {            text-decoration: underline;            color: #000000;           background: none;           }   /* how a visited link will appear to the user */ A:visited {           text-decoration: underline;            color: #000000;           background: none;           } /* how a link will appear to the user when the mouse moves over said link */ A:hover   {            text-decoration: none;           color: #cc6600;           background: none;           } 

/* how a link will appear to the user  */ A.link:link    {            text-decoration: underline;            color: #cc6600;           background: none;           } /* how an active link will appear to the user  */ A.link:active  {            text-decoration: underline;            color: #cc6600;           background: none;           }   /* how a visited link will appear to the user */ A.link:visited {           text-decoration: underline;            color: #cc6600;           background: none;           } /* how a link will appear to the user when the mouse moves over said link */ A.link:hover   {            text-decoration: none;           color: #000000;           background: none;           } 

p	  {           font-family: geneva, arial, verdana, sans-serif;           font-size: 10px;
	  }

p.record  {           font-family: geneva, arial, verdana, sans-serif;           font-size: 10px;
	   text-align: right;
	  }

p.day     {
           font-size: 9px;
           font-weight: bold;
           color: #cc6600;
	  }
p.showdate {
           color: #cc6600;
	   }

p.splash {
           color: #cc6600;
	   }
