/* liScroll styles */

.tickercontainer { /* the outer div with the black border */background: #5bbc61;width: 100%;height: 45px;margin: 0;padding: 0;overflow: hidden;}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */position: relative;left: 10px; line-height: 45px;width: 100%;overflow: hidden;}
ul.newsticker { /* that's your list */position: relative;left: 0;list-style-type: none;margin: 0;padding: 0;}
ul.newsticker li {
    transition: 0.3s;
    float: left;display:inline-block; /* important: display inline gives incorrect results when you check for elem's width */margin: 0;padding: 0 10px;}
ul.newsticker li:hover{
    background: #5d5d5d;
}
ul.newsticker a {white-space: nowrap;padding: 0;color: #ffffff;margin: 0 50px 0 0;} 
ul.newsticker span {font-size: 12px;margin: 0 10px 0 0;color: #ccc;} 

ul.newsticker a.newscat{
    color: #fff;
    display: inline-block;
    border: 1px solid #fff;
    padding: 0px 10px;
    height: 30px;
    line-height: 28px;
    margin: 0px 10px 0px 0px;
    text-decoration: none;
}

ul.newsticker a.newscat:hover{
    
    color: #ccc;
    border: 1px solid #ccc;
}