@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: 4%;
  background-color: rgba(0, 0, 0, 0.9);
  padding-left: 100%;
}

.ticker {
  display: inline-block;
  height: 4%;
  line-height: 12pt;
  white-space: nowrap;
  padding-right: 100%;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 30s;
  animation-duration: 45s;
}
.ticker_item {
  display: inline-block;
  font-size: 12pt;
  color: white;
  padding-right: 24pt;
}



body {
  background-color: #fcf4e1;
  color: black;
  font-family: Georgia;
  font-size: 16pt;
  line-height: 32pt;
}

h1 {
}

a {
  color: black;
}

.slink {
  color: white;
  text-decoration-style:dotted;
}    

.d1 {
  background-color: #f29579;
  padding: 3%;
  margin: 3%;
}

.d2 {
  background-color: #a9d184;
  padding: 3%;
  margin: 3%;
}

.d3 {
  background-color: #b0a8e0;
  padding: 3%;
  margin: 3%;
}

.d4 {
  background-color: #b88d63;
  padding: 3%;
  margin: 3%;
}

.fc {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  padding: 3%;
  margin: 3%;
}

.fc > div {
}

.flexc1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  color: white;
  font-size: 8pt;
  line-height: 10pt;
}

.flexc1 > div {
  background-color: black;
  padding: 0.5%;
  margin: 0.5%;
  width: 14.5%;
}