<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#weather {
  color: #fff;
  padding: 20px 5px 20px 20px;
  position: relative;
}
.accordion-inner #weather {
  padding: 0;
}

#weather a {
  color: #eee;
  display: block;
  overflow: auto;
  text-decoration: none;
}

#weather a:hover, #weather a:focus {
  color: #fff;
}

#weather .weatherGraphic {
  float: left;
  margin-left: 40px;
}
.accordion-inner #weather .weatherGraphic {
  margin-left: 10px;
}

#weather .weatherText {
  float: left;
  font-size: 16px;
  font-weight: bold;
  margin: 7px 0 0 10px;
}

/* Forecast popup div --------------------------------------------------------- */
#weather .wForecast,
#weather .wForecastNight {
  /* Accessibility "contrast" error fix */
  background-color: #fff;
  color: #111;

  border-radius: 3px;
  font-size: 12px;
}

#weather .wForecast,
#weather .wForecastNight {
  width: 300px;
}

#weather .wFBorder,
#weather .wFBorderNight {
  border-radius: 3px;
  box-shadow: 3px 3px 10px rgba(0,0,0,.3);
  padding: 5px 10px;
}

#weather .wFBorder &gt; table,
#weather .wFBorderNight &gt; table {
  margin-bottom: 10px;
}

#weather .wFBorder {
  background: #cce1ff;
  background: linear-gradient(to bottom, #92bbf6 0%,#cce1ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#92bbf6', endColorstr='#cce1ff',GradientType=0 );
}

#weather .wFBorderNight {
  background: #dfdde2;
  background: linear-gradient(to bottom, #b5b2c0 0%,#dfdde2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b5b2c0', endColorstr='#dfdde2',GradientType=0 );
}

#weather .wForecast em,
#weather .wForecastNight em {
  display: block;
  font-style: normal;
  margin: 0;
  text-align: center;
}

#weather .wForecast h3,
#weather .wForecastNight h3 {
  margin: 0;
}

#weather .wForecast .stats,
#weather .wForecastNight .stats {
  width: 170px;
}

#weather .wForecast dl,
#weather .wForecastNight dl {
  margin: 0;
}

#weather .wForecast dt,
#weather .wForecastNight dt {
  float: left;
  width: 75px;
}

#weather .weatherForecastTemp,
#weather .weatherForecastTemp {
  font-weight: bold;
  font-size: 30px;
  padding-left: 5px;
}

#weather .today,
#weather .todayNight,
#weather .tomorrow,
#weather .tomorrowNight {
  background-color: #cce1ff;
  border: 1px solid #5182ce;
  border-radius: 3px;
  padding: 5px;
  margin-bottom: 5px;
}

#weather .todayNight,
#weather .tomorrowNight {
  border-color: #8e8e8e;
  background-color: #dfdde2;
}

#weather .todayStats p,
#weather .tomorrowStats p {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: .25em;
}

#weather .hilo {
  font-weight: bold;
}

#weather .hilo .high {
  color: #f46227;
}

#weather .hilo .low {
  color: #00b2eb;
  padding-left: 5px;
}

#weather .provider {
  text-align: center;
}

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