
/* default anchor */
A:link, A:visited {  
  color            : 000000;
  text-decoration  : underline;  
}

A:hover {
  color            : bb0000; /* bb0000, ccffff */
  background-color : fff8dc; /* 200060; 696969; 483d8b; */
  text-decoration  : none;
}

A:active {
  color            : bb0000; 
  background       : ffffdf;
  text-decoration  : none;
}


/* anchor - no underline */
.anu {
}

.anu:link, .anu:visited {
  color            : 000000; 
  text-decoration  : none;
}

.anu:hover {
  color            : bb0000; 
  background       : fff8dc;
  text-decoration  : none;
}

.anu:active {
  color            : bb0000; 
  background       : ffffdf;
  text-decoration  : none;
}


/* default anchor - bold */
.ab{
}

.ab:link, .ab:visited {
  color            : #000000;
  text-decoration  : underline;
  font-weight: bold;
}

.ab:hover {
  color            : bb0000; 
  background       : fff8dc;
  text-decoration  : none;
}

.ab:active {
  color            : bb0000; 
  background       : ffffdf;
  text-decoration  : none;
}


/* default anchor - bold, no underline */
.abnu{
}

.abnu:link, .abnu:visited {
  color            : #000000;
  text-decoration  : none;
  font-weight:bold;
}

.abnu:hover {
  color            : bb0000; 
  background       : fff8dc;
  text-decoration  : none;
}

.abnu:active {
  color            : bb0000; 
  background       : ffffdf;
  text-decoration  : none;
}

