.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
font-size: 15px;
height: 20px;
margin-bottom: 0px;
overflow: hidden;
padding-left: 10px;
padding-right: 10px;
position: relative;
top: 8px;
width:938px;
/*border:1px solid red;*/
}
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;
font-family:Arial, Helvetica, sans-serif;
margin-left: 20px;
list-style-type: none;
margin: 0;
padding: 0;
}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding-right: 15px;
margin-top:2px;
}