/* Default link styling */
a {
  color: #005EA2;
  text-decoration: underline;
}

/* Visited links */
a:visited {
  color: #54278F;
}

/* Keep underline on hover/focus as well */
a:hover,
a:focus {
  color: #005EA2;
  text-decoration: underline;
}

/* Visited links on hover/focus */
a:visited:hover,
a:visited:focus {
  color: #54278F;
  text-decoration: underline;
}
/* Change banner background color */
header[data-component="banner"].banner {
  background: #003E73 !important;
  background-image: none !important;
}

/* Hide extra auto-generated words under the heading */
header[data-component="banner"] hgroup p {
  display: none !important;
}