
/* Keep page close to original look */
body { background: #fff; }

.top-banner-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ffffff;
  padding: 0;
}
.top-banner-wrap .logo{
  width: 120px;
  height: auto;
  margin-right: 10px;
}
.top-banner-wrap .banner-img{
  width: 100%;
  max-height: 170px;
  object-fit: cover;
}

.notice-bar{
  padding: 6px 10px;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
  white-space: nowrap;
}
.notice-track{
  display:inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 18s linear infinite;
}
.notice-bar:hover .notice-track{ animation-play-state: paused; }
.notice-link{
  margin-right: 18px;
  text-decoration: underline;
}

@keyframes marquee{
  0%{ transform: translateX(100%); }
  100%{ transform: translateX(-100%); }
}

/* Footer */
.site-footer{
  background:#2f2f2f;
  color:#fff;
  padding: 16px 0;
  margin-top: 30px;
}
.site-footer a{ color:#fff; text-decoration:none; }
