/* Deployment fixes - NOT part of the original Adobe Muse export.
   Loaded after each page's own stylesheet. See CHANGELOG.md. */

/* Fix 6: Trucking removed from the footer menu. Its slot was at left:207px;
   move the items that followed it one slot (69px) to the left. */
#u16983 { left: 207px; }  /* Projects    (was 276px) */
#u16997 { left: 276px; }  /* Stewardship (was 345px) */
#u17011 { left: 345px; }  /* Press       (was 414px) */
#u17025 { left: 414px; }  /* Investment  (was 483px) */
#u17039 { left: 484px; }  /* Contact     (was 553px) */

/* Fix 7 (stewardship.html): the original images were never archived.
   a) Intro band background: uinta-mountains-pano-1.jpg is lost; use the
      Uinta landscape photo that the Projects page uses. */
#u10287 {
  background: #282828 url("../images/unita-mountains-landscape-background.jpg") no-repeat center center;
  background-size: cover;
}

/* b) The three tab buttons that switch the Product Safety panels had image
      backgrounds that are lost, so they were invisible. Draw them in the site's
      icon style (orange ring) with Ionicons glyphs. The selected tab is filled. */
#u10434, #u10433, #u10435 {
  box-sizing: border-box;
  border: 3px solid #F05023;
  border-radius: 50%;
  background: transparent;
  color: #F05023;
  font-family: "Ionicons";
  font-size: 44px;
  line-height: 84px;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}
#u10434::before { content: "\f376"; }  /* Product Safety Assessment: clipboard */
#u10433::before { content: "\f12e"; }  /* Labeling & Safety Data Sheets: document */
#u10435::before { content: "\f39e"; }  /* Collaboration: people */
#u10434:hover, #u10433:hover, #u10435:hover,
#u10434.PamphletThumbSelected, #u10433.PamphletThumbSelected, #u10435.PamphletThumbSelected {
  background-color: #F05023;
  color: #FFFFFF;
}
