<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --hourly-bar-radius: clamp(10px, 10vw, 20px);
  --hourly-bar-container-background: transparent;
  --hourly-bar-container-clamped-width: clamp(50px, 10vw, 100px);
  --hourly-bar-container-clamped-height: clamp(50px, 15vh, 250px);
  --hourly-fixed-base-height-percent: 10;
  --hourly-min-bar-height-overall-percent: 5;
  --hourly-precip-bar-color: var(--percip-color-md);
  --hourly-temp-current-font-size: var(--font-size-xl);
  --hourly-temp-current-line-height: 1.1;
  --hourly-temp-text-calculated-height: calc(var(--hourly-temp-current-font-size) * var(--hourly-temp-current-line-height));
  --hourly-temp-bar-min-height-abs: calc(var(--hourly-temp-text-calculated-height) * 2);
  --hourly-dynamic-scaling-height: calc(var(--hourly-bar-container-clamped-height) - var(--hourly-temp-bar-min-height-abs));
  --accuweather-brand-color: #FF7F00;
  --nws-brand-color: #003366;
}

#hourly-forecast {
  grid-area: hourly;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

#hourly-forecast .hourly-content-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.hourly-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  position: relative;
  padding: var(--space-sm) 0 var(--space-sm) 0;
  align-items: flex-start;
  width: max-content;
  height: 100%;
}

.hourly-track &gt; div {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: var(--space-sm) var(--space-xs);
  border-right: 0.1px solid var(--subtext-color);
  box-sizing: border-box;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.hourly-track &gt; div:last-child { border-right: none; }

.hourly-item {
  flex: 0 0 115px;
  position: relative;
}

.temp-bar-container, .precip-bar-container {
  width: var(--hourly-bar-container-clamped-width);
  height: var(--hourly-bar-container-clamped-height);
  background-color: var(--hourly-bar-container-background);
  display: flex;
  margin: 0.1rem 0;
  position: relative;
}

.temp-bar-container {
  flex-direction: column-reverse;
  order: 2;
}

.precip-bar-container {
  flex-direction: column;
  order: 4;
}

.temp-bar {
  width: 100%;
  flex-shrink: 0;
  border-radius: var(--hourly-bar-radius) var(--hourly-bar-radius) 0 0;
  --scaled-temp-factor: 0;
  min-height: var(--hourly-temp-bar-min-height-abs);
  height: calc(
    var(--hourly-temp-bar-min-height-abs) +
    (var(--scaled-temp-factor) * var(--hourly-dynamic-scaling-height))
  );
}

.precip-bar {
  width: 100%;
  flex-shrink: 0;
  background-color: var(--hourly-precip-bar-color);
  border-radius: 0 0 var(--hourly-bar-radius) var(--hourly-bar-radius);
}

.hourly-item .hourly-temp,
.hourly-item .hourly-pop-text {
  display: block; position: absolute; left: 0; width: 100%; text-align: center;
  font-weight: bold; color: var(--surface-color);
  line-height: 1.1;
  pointer-events: none; z-index: 1;
  padding: 0 var(--space-xs); box-sizing: border-box;
}

.hourly-item .hourly-temp {
  bottom: 5px;
  font-size: var(--hourly-temp-current-font-size);
  line-height: var(--hourly-temp-current-line-height);
}

.hourly-item .hourly-pop-text {
  top: 5px;
  font-size: var(--font-size-xl);
  color: var(--percip-color-text);
}
.hourly-item .hourly-pop-text:empty { display: none; }

h3.hourly-temp {
  margin-bottom: 0px !important;
}

.hourly-icon-container {
  order: 1;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  width: 100%;
}

.hourly-item .hourly-icon-container {
  margin-bottom: var(--space-xs);
}

.hourly-item .hourly-icon {
  width: clamp(2.5rem, 8vw, 3.5rem);
  height: clamp(2.5rem, 8vw, 3.5rem);
  fill: var(--header-color);
  display: block;
  margin: 0 auto;
}

.hourly-item .hourly-time {
  order: 3;
  font-size: var(--font-size-lg);
  color: var(--header-color);
  font-weight: bold;
  white-space: nowrap;
  margin: var(--space-xs) 0;
}

.hourly-item .hourly-wind {
  order: 5;
  font-size: var(--font-size-md);
  color: var(--subtext-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em; white-space: nowrap;
  padding-bottom: 0;
  width: 100%;
}
.hourly-item .hourly-wind-icon { width: 1.1em; height: 1.1em; }

.day-marker-item {
  justify-content: center;
  min-height: 250px;
  flex-basis: auto;
  padding: var(--space-sm) var(--space-xs);
  min-width: 3.5rem !important;
  overflow: hidden;
}

.day-marker-item .day-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-size: var(--font-size-lg);
  color: var(--header-color);
  font-weight: bold;
  margin: auto 0;
  transform: rotate(180deg);
}

.sun-event-item {
  min-height: 250px;
  flex-basis: auto;
  padding: var(--space-sm) 2px;
  min-width: var(--hourly-bar-container-clamped-width);
  overflow: hidden;
}

.sun-event-item .sun-icon-container {
  margin-bottom: var(--space-xxl);
}

.sun-event-item .marker-label,
.sun-event-item .marker-time {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: var(--font-size-lg) !important;
  color: var(--header-color) !important;
  font-weight: bold !important;
  white-space: nowrap;
  transform: rotate(180deg);
  margin: 0 auto;
  line-height: 1;
  display: block;
}

.sun-event-item .marker-label {
  width: auto;
  font-size: var(--font-size-sm);
  color: var(--subtext-color);
  order: 3;
}

.sun-event-item .marker-time {
  font-size: var(--font-size-md);
  order: 2;
  margin-bottom: var(--space-md);
}

.sun-event-item .sun-marker-icon {
  width: clamp(2.5rem, 8vw, 3.5rem);
  height: clamp(2.5rem, 8vw, 3.5rem);
  display: block;
  margin: 0 auto;
}

.hourly-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  flex-grow: 1;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-light) var(--surface-color);
  padding-bottom: var(--space-md);
}

.hourly-source-indicator {
  order: 6;
  font-size: var(--font-size-md);
  font-weight: bold;
  line-height: 1.1;
  margin-top: var(--space-xs);
  text-transform: uppercase;
  opacity: 0.85;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

.hourly-source-indicator.accu-indicator {
  color: var(--accuweather-brand-color);
}

.hourly-source-indicator.nws-indicator {
  color: var(--nws-brand-color);
}

.realfeel-line {
  position: absolute;
  left: 5%;
  right: 5%;
  height: 2px;
  z-index: 2;
  pointer-events: none;
  border-radius: 1px;
}

@media (max-width: 450px) {
  :root {
    --hourly-bar-radius: 10px;
    --hourly-bar-container-background: transparent;
    --hourly-bar-container-clamped-width: 50px;
    --hourly-fixed-base-height-percent: 20;
    --hourly-min-bar-height-overall-percent: 10;
    --hourly-temp-current-font-size: var(--font-size-md);
  }

  #hourly-forecast {
    padding-left: 0;
    padding-right: 0;
  }

  .hourly-item {
    flex: 0 0 55px;
    font-size: var(--font-size-md) !important;
  }

  .hourly-item .hourly-pop-text {
  top: 5px;
  font-size: var(--font-size-md);
  color: var(--percip-color-text);
}

  .hourly-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    position: relative;
    padding: 0;
    align-items: flex-start;
    width: max-content;
    height: 100%;
  }

  .hourly-track &gt; div {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0;
    border-right: none;
    box-sizing: border-box;
    gap: 0;
    flex-shrink: 0;
  }

  .hourly-track &gt; div:last-child {
    border-right: none;
  }

  .hourly-item .hourly-wind {
    order: 5;
    font-size: var(--font-size-xxs);
    color: var(--subtext-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    white-space: nowrap;
    padding-bottom: 0;
    width: 100%;
  }

  .hourly-item .hourly-wind-icon {
    width: 1.1em;
    height: 1.1em;
  }

  .hourly-source-indicator {
    order: 6;
    font-size: var(--font-size-xs);
    font-weight: bold;
    line-height: 1.1;
    margin-top: var(--space-xs);
    text-transform: uppercase;
    opacity: 0.85;
    text-align: center;
    white-space: nowrap;
    width: 100%;
  }

  .sun-event-item {
    min-height: 250px;
    flex-basis: auto;
    padding: var(--space-sm) 2px;
    min-width: var(--hourly-bar-container-clamped-width);
    overflow: hidden;
  }

  .day-marker-item {
    justify-content: center;
    min-height: 250px;
    flex-basis: auto;
    padding: var(--space-sm) var(--space-xs);
    min-width: 2rem !important;
    overflow: hidden;
  }

  .hourly-item .hourly-pop-text {
    font-size: var(--font-size-md);
  }

  .hourly-item .hourly-time {
    order: 3;
    font-size: var(--font-size-md);
    color: var(--header-color);
    font-weight: bold;
    white-space: nowrap;
    margin: var(--space-xs) 0;
  }


  .hourly-icon-container {
  order: 1;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 20px;
  width: 100%;
}

.hourly-item .hourly-icon-container {
  margin-bottom: var(--space-xs);
}

.hourly-item .hourly-icon {
  width: 35px;
  height: 35px;
  fill: var(--header-color);
  display: block;
  margin: 0 auto;
}

.day-marker-item {
  justify-content: center;
  min-height: 250px;
  flex-basis: auto;
  padding: var(--space-sm) var(--space-xs);
  min-width: 30px !important;
  overflow: hidden;
}

.day-marker-item .day-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-size: var(--font-size-md);
  color: var(--header-color);
  font-weight: bold;
  margin: auto 0;
  transform: rotate(180deg);
}

.sun-event-item {
  min-height: 250px;
  flex-basis: auto;
  padding: var(--space-sm) 2px;
  min-width: var(--hourly-bar-container-clamped-width);
  overflow: hidden;
}

.sun-event-item .sun-icon-container {
  margin-bottom: var(--space-xxl);
}

.sun-event-item .marker-label,
.sun-event-item .marker-time {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: var(--font-size-md) !important;
  color: var(--header-color) !important;
  font-weight: bold !important;
  white-space: nowrap;
  transform: rotate(180deg);
  margin: 0 auto;
  line-height: 1;
  display: block;
}

.sun-event-item .marker-label {
  width: auto;
  font-size: var(--font-size-sm);
  color: var(--subtext-color);
  order: 3;
}

.sun-event-item .marker-time {
  font-size: var(--font-size-md);
  order: 2;
  margin-bottom: var(--space-md);
}

.sun-event-item .sun-marker-icon {
  width: 35px;
  height: 35px;
  display: block;
  margin: 0 auto;
}

.hourly-source-indicator {
  order: 6;
  font-size: var(--font-size-sm);
  font-weight: bold;
  line-height: 1.1;
  margin-top: var(--space-xs);
  text-transform: uppercase;
  opacity: 0.85;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

}

@media (max-width: 360px) {
  :root {
    --hourly-bar-radius: 7px;
    --hourly-bar-container-background: transparent;
    --hourly-bar-container-clamped-width: 40px;
    --hourly-fixed-base-height-percent: 20;
    --hourly-min-bar-height-overall-percent: 10;
    --hourly-temp-current-font-size: var(--font-size-sm);
  }

  #hourly-forecast {
    padding-left: 0;
    padding-right: 0;
  }
  #hourly-forecas h3 {
    font-size: var(--font-size-sm) !important;

  }
  
  .hourly-item {
    flex: 0 0 45px;
    font-size: var(--font-size-sm) !important;
  }

  .hourly-item .hourly-pop-text {
  top: 5px;
  font-size: var(--font-size-sm) !important;
  color: var(--percip-color-text);
}

  .hourly-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    position: relative;
    padding: 0;
    align-items: flex-start;
    width: max-content;
    height: 100%;
  }

  .hourly-track &gt; div {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0;
    border-right: none;
    box-sizing: border-box;
    gap: 0;
    flex-shrink: 0;
  }

  .hourly-track &gt; div:last-child {
    border-right: none;
  }

  .hourly-item .hourly-time {
  order: 3;
  font-size: var(--font-size-xxs) !important;
  color: var(--header-color);
  font-weight: bold;
  white-space: nowrap;
  margin: var(--space-xs) 0;
}

  .hourly-item .hourly-wind {
    order: 5;
    font-size: 0.50rem;
    color: var(--subtext-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    white-space: nowrap;
    padding-bottom: 0;
    width: 100%;
  }

  .hourly-item .hourly-wind-icon {
    width: 0.8em;
    height: 0.8em;
  }

  .hourly-source-indicator {
    order: 6;
    font-size: var(--font-size-xs);
    font-weight: bold;
    line-height: 1.1;
    margin-top: var(--space-xs);
    text-transform: uppercase;
    opacity: 0.85;
    text-align: center;
    white-space: nowrap;
    width: 100%;
  }

  .sun-event-item {
    min-height: 250px;
    flex-basis: auto;
    padding: var(--space-sm) 2px;
    min-width: var(--hourly-bar-container-clamped-width);
    overflow: hidden;
  }

  .day-marker-item {
    justify-content: center;
    min-height: 250px;
    flex-basis: auto;
    padding: var(--space-sm) var(--space-xs);
    min-width: 2rem !important;
    overflow: hidden;
  }

  .hourly-item .hourly-pop-text {
    font-size: var(--font-size-md);
  }

  .hourly-item .hourly-time {
    order: 3;
    font-size: var(--font-size-md);
    color: var(--header-color);
    font-weight: bold;
    white-space: nowrap;
    margin: var(--space-xs) 0;
  }

    .hourly-icon-container {
  order: 1;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 20px;
  width: 100%;
}

.hourly-item .hourly-icon-container {
  margin-bottom: var(--space-xs);
}

.hourly-item .hourly-icon {
  width: 25px;
  height: 25px;
  fill: var(--header-color);
  display: block;
  margin: 0 auto;
}

.day-marker-item {
  justify-content: center;
  min-height: 250px;
  flex-basis: auto;
  padding: var(--space-sm) var(--space-xs);
  min-width: 20px;
  overflow: hidden;
}

.day-marker-item .day-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-size: var(--font-size-sm);
  color: var(--header-color);
  font-weight: bold;
  margin: auto 0;
  transform: rotate(180deg);
}

.sun-event-item {
  min-height: 250px;
  flex-basis: auto;
  padding: var(--space-sm) 2px;
  min-width: var(--hourly-bar-container-clamped-width);
  overflow: hidden;
}

.sun-event-item .sun-icon-container {
  margin-bottom: var(--space-xxl);
}

.sun-event-item .marker-label,
.sun-event-item .marker-time {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: var(--font-size-xxs) !important;
  color: var(--header-color) !important;
  font-weight: bold !important;
  white-space: nowrap;
  transform: rotate(180deg);
  margin: 0 auto;
  line-height: 1;
  display: block;
}

.sun-event-item .marker-label {
  width: auto;
  font-size: var(--font-size-sm);
  color: var(--subtext-color);
  order: 3;
}

.sun-event-item .marker-time {
  font-size: var(--font-size-md);
  order: 2;
  margin-bottom: var(--space-md);
}

.sun-event-item .sun-marker-icon {
  width: 25px;
  height: 25px;
  display: block;
  margin: 0 auto;
}

.hourly-source-indicator {
  order: 6;
  font-size: var(--font-size-xxs);
  font-weight: bold;
  line-height: 1.1;
  margin-top: var(--space-xs);
  text-transform: uppercase;
  opacity: 0.85;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

}</pre></body></html>