/* CSS Document */
a:link /*normal links in the text*/
  {
  color: blue; 
  text-decoration : none; 
  }
a:visited 
  {
  color: #0066FF; 
  text-decoration : none; 
  }
a:hover 
 { 
  color: #FF0000; 
  text-decoration : underline; 
  background: transparent;
 }
a:active 
 { 
  color: #FF0000; 
  background: #CCCCCC;
 }
/*......nav links for main navigation*/
a.nav:link 
	{
	color: #000000;
	text-decoration : none;
	font-size: small;
	background: transparent;
	font-weight: bold;
  	}
a.nav:visited 
	{
	color: #0066FF;
	text-decoration : none;
	font-size: small;
	background: transparent;
	font-weight: bold;
  	}
a.nav:hover 
	{
	color: #0066FF;
	text-decoration : underline;
	font-size: small;
	background: #F7B6F1;
	font-weight: bold;
  	}
 a.nav:active 
	{
	color: #FF0000;
	text-decoration : underline;
	font-size: small;
	background: transparent;
	font-weight: bold;
  	}
/*......end nav links for main navigation..........*/
	/*..........rightnav links..........*/
a.nav2:link 
	{
  	color: #0066FF; 
  	text-decoration: underline; 
  	font-size: small; 
  	background: transparent;
  	}
a.nav2:visited 
	{
  	color: #0066FF; 
  	text-decoration : none;
  	font-size: small; 
  	background: underline;
  	}
a.nav2:hover 
	{ 
  	color: #0066FF; 
  	text-decoration : underline; 
  	font-size: small; 
  	background: #F7B6F1;
  	}
 a.nav2:active 
	{ 
  	color: #FF0000; 
  	text-decoration : underline; 
  	font-size: small; 
  	background: transparent;
  	} 
	/*..........end rightnav links..........*/

