/*Internal store naviagtion*/
a.ebnlink:link {
color: white;
text-decoration: none;
}
a.ebnlink:visited {
color: white;
text-decoration: none;
}
a.ebnlink:active {
color: #42413C;
text-decoration: none;
}
a.ebnlink:hover {
color: #666;
text-decoration: none;
}


/* Home Page Ticker Tape */

.ticker-item {
  display: inline-block;
  padding: 0 1em;
  color: #849e78;   
}

.ticker-wrap {
  overflow-x: hidden;
  width: 100%;
  display: flex;
}

.ticker {
  --direction: normal;
  --duration: 30s;
  --delay: 0s;
  --iteration-count: infinite;
  display: flex;
  gap: 1rem;
  flex: 0 0 auto;
  margin-right: 1rem;
  min-width: 100%;
  align-items: center;
  animation: marquee var(--duration) linear var(--delay) var(--iteration-count);
  animation-play-state: var(--play);
  animation-delay: var(--delay);
  animation-direction: var(--direction);
}

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


.style58{ font-size: 1.2em; font-weight: bold; padding-top: 2em;}
.style50{ font-size: 1.2em; font-weight: bold; }

