@charset "utf-8";
/*
#news-ticker { 
    display: block;
    font-size: 15px;

    
}
*/
#news-ticker h5 {
    float: left;
    font-size: 16px;
    font-weight: 600;
    margin-right: 15px;
}
#news-ticker .ticker-title {
    display: inline-block;
    margin-right: 12px;
    line-height: 12px;
    font-weight: 900;
}

#news-ticker ul { 
    display: inline-block;
    position: relative;
}
#news-ticker li a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    line-height: 28px;
}

#news-ticker li a:hover {
/*    text-decoration: underline;*/
    color: #000;
}

#news-ticker li {
    position: absolute;
    left: 0;
    width: 0;
    overflow: hidden;
    height: 1.8em;
    word-wrap: break-word;  
    opacity: 0
}

#news-ticker li.tick {
    -webkit-animation: tick 5s linear;
    
}

@-webkit-keyframes tick {
  0% {
    width: 0;
  }
  5% {
      opacity: 1;
  } 
  90% {
    width: 550px;
    opacity: 1;
  }
  100% {
     opacity: 0
  }
}