/*scroller*/


.tickercontainer { /* the outer div with the black border */
/*background: #fff; */
/* width:912px; */
width: 100%;
height:30px;
overflow:hidden;
margin: 0; 
padding: 0;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 10px;
top: 15px;
/* width: 912px; */
width: 100%;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 0;
list-style-type: none;
margin: 0;
padding: 0;
width:20000px!important;
}

ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
padding:0 10px 0 0;
margin:0 42px 0 0;
white-space: nowrap;
}
