.news {
  box-shadow: inset 0-15px 30px rgba(0,0,0,0.4),0 5px 10px rgba(0,0,0,0.5);
  width: 350px;
  height: 30px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 4px;
  padding: 3px;
  -webkit-user-select: none;
}

.full-width {
  width: 100%;
}

.news span {
  float: left;
  color: #fff;
  padding: 6px;
  position: relative;
  top: 1%;
  border-radius: 4px;
  box-shadow: 0-15px 30px rgba(0,0,0,0.4);
  font: 16px 'Source Sans Pro', Helvetica, Ariel, sans-serif;
  webkit-font-smoothing: antialiased;
  webkit-user-select: none;
  cursor: pointer;
}

.news ul {
  float: left;
  padding-left: 20px;
  animation: ticker 10s cubic-bezier(1,0,0.5,0)infinite;
  -webkit-user-select: none;
}

.news ul li {
  line-height: 30px;
  list-style: none;
}

.news ul li a {
  color: #fff;
  text-decoration: none;
  font: 14px Helvetica, Ariel, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
}

@keyframes ticker {
  0% {
    margin-top: 0;
  }
  25% {
    margin-top: -30px;
  }
  50% {
    margin-top: -60px;
  }
  75% {
    margin-top: -90px;
  }
  100% {
    margin-top: 0;
  }
}

.news ul:hover {
  animation-play-state: paused;
}

.news span:hover + ul {
  animation-play-state: paused;
}

.hwrap {
  overflow: hidden;
  background: #eee;
}

.hmove {
  display: flex;
}

.hitem {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

@keyframes tickerh {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(-400%, 0, 0);
  }
  .hmove {
    animation: tickerh linear 15s infinite;
  }
  .hmove:hover {
    animation-play-state: paused;
  }
}

@keyframes tickerh {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(-400%, 0, 0);
  }
  .hmove {
    animation: tickerh linear 15s infinite;
  }
  .hmove:hover {
    animation-play-state: paused;
  }
}

body {
  background: #eee;
}

.news {
  width: 160px;
}

.news-scroll a {
  text-decoration: none;
}

.dot {
  height: 6px;
  width: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 2px !important;
  background-color: rgb(207,23,23);
  border-radius: 50%;
  display: inline-block;
}

.news-scroll a {
  text-decoration: none;
}

.news {
  width: 160px;
}

.topnav {
  background-color: #333;
  overflow: hidden;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04aa6d;
  color: white;
}

.topnav .icon {
  display: none;
}

@media (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none;
  }
}

@media (max-width: 600px) {
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media (max-width: 600px) {
  .topnav.responsive {
    position: relative;
  }
}

@media (max-width: 600px) {
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
}

@media (max-width: 600px) {
  .topnav.resposive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.w-95 {
  width: 80%!important;
}

img {
}

blink {
  animation: 2s linear infinite condemned_blink_effect;
}

@keyframes condemned_blink_effect {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

.warning {
  color: red;
  height: 50px;
  font-size: xx-large;
}

#div0 {
  animation-timing-function: linear;
}

@keyframes mymove {
  from {
    left: 0px;
  }
  to {
    left: 300px;
  }
}

#div0 {
  width: 80%;
  height: 90px;
  background-color: white;
  font-weight: 800;
  position: relative;
  animation: mymove 5s infinite;
  color: red;
}

