/* liScroll styles */

.tickercontainer { /* the outer div with the black border */ 
width:auto; 
height:auto;
background-color:#66C; color:#FFF; border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px; -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.75);
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;
left: 10px;
top: 8px;
width: auto;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 1150px;
list-style-type: none;


}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */

}
 
ul.newsticker span {
margin: 0 10px 0 0;
font-size:18px;
text-indent:30px;

} 