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