/* liScroll styles */
.news-home{
    position:relative;
}
.tickercontainer { /* the outer div with the black border */
    background: #1d1e23; 
    width: 100%; 
    height: 40px; 
    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;
    right: 215px;
    top: 0px;
    left: 0;
    overflow: hidden;
}
ul.newsticker { /* that's your list */
    position: relative;
    right: 1%;
    list-style-type: none;
    margin: 0;
    padding: 0;

}
ul.newsticker li {
    float: right; /* important: display inline gives incorrect results when you check for elem's width */
    margin: 0;
    padding: 0;
    background: #1d1e23;
    color: #fff;
}
ul.newsticker a {
    padding: 0;
    color: #fff;
    margin: 0 0 0 50px;
    line-height: 40px;
    font-size: 14px;
} 
ul.newsticker a:hover{
    color:#e68b00;
}

.title-news {
    position: absolute;
    background-color: #088241;
    top: 0;
    bottom: 0;
    color: #fff;
    text-align: center;
    right: 0;
    width: 215px;
    padding: 7px 0;
    z-index: 99;
}
.title-news:hover {
    color: #fff;
    /*background-color: #267599;*/
    /*font-size: 16px;*/
    /*line-height: 20px;*/
    /*box-shadow: 0 0 30px #000;*/

}
ul.newsticker a:hover{
    color: #ffffffc2;
}
ul.newsticker li i{
    font-size: 12px;
}