@keyframes ticker {
	0%   {margin-top: 0}
	25%  {margin-top: -30px}
	50%  {margin-top: -60px}
	75%  {margin-top: -90px}
	100% {margin-top: 0}
}

.news {
  box-shadow: inset 0 -15px 30px rgba(0,0,0,0.3), 0 5px 10px rgba(0,0,0,0.4);
  width: 340px;
  height: 29px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 4px;
  padding: 0px;
  -webkit-user-select: none
} 

.news span {
  float: left;
  color: #fff;
  padding: 7px 10px 7px 10px;
  position: relative;
  top: 1%;
  border-radius: 4px;
  box-shadow: inset 0 -15px 30px rgba(0,0,0,0.3);
  font: 13px 'Montserrat', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  cursor: pointer
}

.news ul {
  float: left;
  padding-left: 10px;
  animation: ticker 15s cubic-bezier(1, 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: 12px 'Montserrat', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none
}

.news ul:hover { animation-play-state: paused }
.news span:hover+ul { animation-play-state: paused }

/* OTHER COLORS */
.blue { background: #347fd0 }
.blue span { background: #2c66be }

.green { background: #699B67 }
.green span { background: #547d52 }

.orange { background: #FF9800 }
.orange span { background: #ca7800 }
