/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
border:none;
background: #e4e4e4; 
width: 97.5%; 
height: 32px; 
margin: 0; 
padding: 0;
overflow: hidden;
margin-left:15px;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
top: 8px;
width: 100%;
overflow: hidden;
}
ul.newsticker { /* that's your list */
font-family: 'Roboto', sans-serif;
	font-size:15px;
position: relative;
left: 750px;
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:50px;

}
ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #0f508a;
} 
ul.newsticker span {
} 