.LatestNews
{
    display: none !important;
}
.tickeroverlay-left, .tickeroverlay-right
{
    display: none;
}

.tickercontainer
{
    /* the outer div */
    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;
    padding: 0.5%;
    overflow: hidden;
}
ul.newsticker
{
    /* that's your list */ /*Transitions have been added in order set css3 transitions; and have linear easing. Changing these lines you might have unexpected results */
    -webkit-transition: all 0s linear;
    -moz-transition: all 0s linear;
    -o-transition: all 0s linear;
    transition: all 0s linear;
    position: relative;
    margin-left: 20px;
    font: bold 10px Verdana;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
ul.newsticker li
{
    margin: 0;
}
ul.newsticker a
{
    white-space: nowrap;
    padding: 0;
}
ul.newsticker span
{
    margin: 0 10px 0 0;
}

#webticker li
{
    float: right; /* important: display inline gives incorrect results when you check for elem's width */
    margin: 0;
    padding-left: 15px;
    list-style: none;
}
