@charset "UTF-8";
/*Accessiblity*/
#skiptocontent a {
  padding: 6px;
  position: absolute;
  top: -40px;
  left: 0px;
  color: white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-bottom-right-radius: 8px;
  background: #000;
  color: white;
  -webkit-transition: top 1s ease-out, background 1s linear;
  transition: top 1s ease-out, background 1s linear;
  z-index: 10000000;
}
#skiptocontent a:focus {
  position: absolute;
  left: 0px;
  top: 0px;
  box-shadow: 0 0 2px 3px red;
  background-color: #fff !important;
  color: #2a2a2a !important;
  outline: 0;
  -webkit-transition: top .1s ease-in, background .5s linear;
  transition: top .1s ease-in, background .5s linear;
}
:focus-visible {
  box-shadow: 0 0 2px 3px red;
  background-color: #fff !important;
  color: #2a2a2a !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/*End Accessibility*/
/* Default styling for PDF links */
a[href$=".pdf"]::after {
  content: "\f1c1";
  font-family: FontAwesome;
  color: #9F1D20; /* Default PDF icon color */
  margin-left: 8px;
}
/* Default styling for PDF links */
a[href$=".pdf"]::after {
  content: "\f1c1"; /* PDF icon */
  font-family: FontAwesome;
  color: #9F1D20; /* Default PDF icon color */
  margin-left: 8px;
}
/* Default styling for new window links */
a[target="_blank"]::after {
  content: "\f08e"; /* New window icon */
  font-family: FontAwesome;
  font-size: 0.9em;
  margin-left: 0.5rem;
  color: #0D7691; /* Default new window icon color */
  text-decoration: none;
  display: inline-block;
}
/* Ensure icons are white when within <a> or <button> */
a[href$=".pdf"]:is(a, button)::after, a[target="_blank"]:is(a, button)::after {
  color: #ffffff !important; /* Force white color */
}
/* Remove PDF icon if the link contains an image */
a[href$=".pdf"]:has(img)::after {
  content: none;
}