a:link    {
  /* Applies to all unvisited links */
  text-decoration:  none;
  font-weight:      bold;
    color:          blue;
  } 
a:visited {
  /* Applies to all visited links */
  text-decoration:  none;
  font-weight:      bold;
    color:          blue;
  } 
a:hover   {
  /* Applies to links under the pointer */
  text-decoration:  underline;
  font-weight:      bold;
    color:          FA6C03;
  } 
a:active  {
  /* Applies to activated links */
  text-decoration:  none;
  font-weight:      bold;
    color:          blue;
  } 
