/* ARC — exact reproduction of ARC_Website_Design_2024_2.pdf
   Pages rendered at 300dpi, browser chrome cropped, sliced and stacked.
   No design decisions made here. The pixels are the PDF's. */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { background: #ffffff; }
body {
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.page {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: block;
  font-size: 0;          /* kills inline-image baseline gaps between slices */
  line-height: 0;
}

.page img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

/* First slice carries the nav hotspots */
.slice-nav { position: relative; display: block; }

.hot {
  position: absolute;
  display: block;
  z-index: 5;
  /* transparent — the link text is part of the image itself */
}
.hot:focus-visible { outline: 2px solid #c8161d; outline-offset: 2px; }
