<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.newscal {
  /*padding: 10px;*/
  /*text-align: center;*/
}
.newscal .navigation {
  font-size: 120%;
  padding-top: 20px;
}
.newscal .calwrap {
  display: inline-block;
  vertical-align: top;
  /*margin: 15px 10px 10px 10px;*/
  margin-bottom: 15px;
}
.newscal table.calendar {
  margin-left: auto;
  margin-right: auto;
  border: none;
  border-spacing: 0;
}
.newscal table.calendar th, .newscal table.calendar td {
  margin: 0;
  text-align: center;
}
.newscal table.calendar td {
  padding: 4px 0;
}
.newscal table.calendar td .day {
  padding: 5px 9px;
}
.newscal table.calendar th {
  padding: 9px;
}
.newscal table.calendar .title th {
  text-align: center;
  background: #00425B;
  color: white;
  font-size: 120%;
}
.newscal table.calendar .title th .navigation {
  color: white;
  padding-top: 0;
  font-size: 100%;
}
.newscal table.calendar .days th {
  text-align: center;
  background: #ccc;
}
.newscal table.calendar td.othermonth {
  color: #999;
}
.newscal table.calendar td.day6, .newscal table.calendar td.day7 {
  background: #eee;
}
.newscal table.calendar td.today .day, .newscal table.calendar td.today.hasevents .day {
  font-weight: bold;
  color: red;
}
.newscal table.calendar td.hasevents .day {
  background: blue;
  color: white;
  position: relative;
}
.newscal table.calendar td.hasevents .day ul.events {
  text-align: left;
  list-style: none;
  padding: 5px;
  margin: 0;
  background: white;
  border: 1px solid black;
  z-index: 100;
  display: none;
  position: absolute;
  right: -200px;
  top: 0;
  width: 200px;
}
.newscal table.calendar td.hasevents .day ul.events li {
  margin: 0;
  padding: 0;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newscal table.calendar td.hasevents.startev {
  padding-left: 4px;
}
.newscal table.calendar td.hasevents.startev .day {
  padding-left: 5px;
  -moz-border-radius-topleft: 50%;
  -webkit-border-top-left-radius: 50%;
  border-top-left-radius: 50%;
  -moz-border-radius-bottomleft: 50%;
  -webkit-border-bottom-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
.newscal table.calendar td.hasevents.endev {
  padding-right: 4px;
}
.newscal table.calendar td.hasevents.endev .day {
  padding-right: 5px;
  -moz-border-radius-topright: 50%;
  -webkit-border-top-right-radius: 50%;
  border-top-right-radius: 50%;
  -moz-border-radius-bottomright: 50%;
  -webkit-border-bottom-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.newscal table.calendar td.hasevents:hover {
  cursor: pointer;
}
.newscal table.calendar td.hasevents:hover ul.events {
  display: block;
}
.newscal .left {
  float: left;
}
.newscal .right {
  float: right;
}
</pre></body></html>