.map-container{
    padding: 20px;
    box-sizing: border-box;
    width: 600px;
}
.map-container h4{
  color: #525252 !important;
  font-family: Anaheim, Arial, Helvetica, sans-serif !important;
  font-size: 1.3em !important;
  font-weight: bold !important;
}
.map-container h4 strong{
  color: #111 !important;
}
#mapid {
  height: 700px;
  width:  600px;

}

/* Make it a marquee */
.ticker-container {
  margin: 0 auto;
   white-space: nowrap;
   overflow: hidden;
   box-sizing: border-box;
   border: 2px dotted #ededed;
   padding: 10px;
}
#school-ticker{
  display: inline-block;
  padding-left: 100%;
  /* show the marquee just outside the paragraph */
  animation: marquee 300s linear infinite;
  margin: 0px !important;
}
#school-ticker:hover{
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
