@charset "utf-8";
/* CSS Document */

/* Sets the style for unvisited links. */
a,  a special:link {
  color: #4095df;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a special:visited {
  color: #4870aa;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a special:hover {
  color: #2170bd;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a special:focus {
  color: #2170bd;
}
/* Sets the style for a link that is being activated/clicked. */
a special:active {
  color: #039;
}