<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">article address {
  box-sizing: content-box;
}
@media screen and (max-width: 2056px) {
  article address {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
  }
  address div[itemtype="http://schema.org/Person"],    address paper-chip:last-of-type
  {
    grid-column: 3;
  }
}
@media screen and (min-width: 2056px) {
  article address {
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 8px;
  }
  article address li a {
    overflow-x: unset;
  }
}
@media screen and (min-width: 768px) {
  address div[data-name="address-location"],
  address div[data-name="address-person"] {
    border-radius: 6px;
    box-shadow: 0 0 1px #000;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  article address {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }
  address div[itemtype="http://schema.org/Person"],    address paper-chip:last-of-type
  {
    grid-column: 1;
  }
  address img,
  address picture,
  address div.ce-element--type-image {
    width: 100%;
    height: 100%;
  }
}
address div[data-name="address-location"],
address div[data-name="address-person"] {
  background-color: var(--nav-background);
  color: var(--nav-color);
  vertical-align: top;
  position: relative;
  outline: none;
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  padding: 0;
  justify-content: center;
  align-content: center;
  grid-template-rows: 3.72rem 1.6rem 16px 44px; /*matches height of link*/
}
address picture {
  display: flex;
  justify-content: center;
  overflow: hidden;
  grid-row: 1 / 5;
  grid-column: 1;
} /* Contact Card Image object-fit artifacting fix */
address picture img {
  height: 100%; /*object-fit: unset; edit: 2024-10-16 trying to fix stretched photo*/
  aspect-ratio: auto 1 / 1;
  width: unset;
  max-width: unset;
  min-width: unset; /* https://stackoverflow.com/questions/74502978/object-fit-cover-gives-pixelated-images-on-chrome */
  overflow-clip-margin: unset;
  overflow: visible; /* object-position: center; */ /* margin: auto; */
} /* iOS hack-fix, maybe */
paper-chip::after,
address img::after,
address picture::after {
  display: none;
} /* Should be obsolete now */
address img,
address iron-image {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  width: auto;
} /* Should be obsolete now */
address iron-image {
  grid-row: 1 / 5;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  width: auto;
}
address p[itemprop="name"],
address p[itemprop="jobTitle"],
address p[itemprop="address"] {
  padding: 0 8px;
  max-height: 100%;
  overflow: hidden;
}
address p[itemprop="name"] {
  display: inline-block;
  font-weight: bold;
  margin: auto 0 0 0;
  line-height: 1;
  white-space: break-spaces;
  padding-top: 4px;
}
address p[itemprop="jobTitle"],
address p[itemprop="address"] {
  font-style: italic;
  font-size: 0.8rem;
  font-size: 13px;
  grid-row: 2 / 4;
  line-height: 1.21;
  padding-top: 4px;
}
address ol,/*address ol ol,*/address ol ul,address ol dl {
  list-style: none;
  margin: 0;
  padding: 6px;
}
address ol {
  color: #212121;
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 50% 50%;
  background: white;
  grid-column: 2;
  grid-row: 4;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
address ol li {
  min-height: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
address ol li &gt; * {
  display: inline-block;
  height: 32px;
  padding: 6px;
}
address ol svg {
  fill: var(--coa-blue);
}
address ol dl {
  display: grid;
  grid-template-columns: auto 1fr;
  list-style: none;
  margin: 0;
  padding: 6px;
}
address ol ul {
  display: flex;
  flex-direction: row;
}
address ol ul a {
  color: inherit;
}
address ol dl {
  display: grid;
  grid-template-columns: auto 1fr;
  list-style: none;
  margin: 0;
  padding: 6px;
} /** Can be removed after all address-card changes are in place **/
picture ~ ol coa-tooltip[hidden] {
  display: none !important;
}
picture ~ ol a[itemprop]::before,
picture ~ ol span[aria-label="Hours"]::before {
  display: none;
}
picture ~ ol coa-tooltip + svg {
  display: inline-block;
}
</pre></body></html>