/* liScroll styles */



#scroll {width: 826px; 
height: 46px;
position:relative;
z-index: 100;
}

.tickercontainer { /* the outer div with the black border */
border: 0px solid #FFF;
background: #000;
width: 826px;
height: 46px;
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: 2px;
top: 16px;
width: 822px;
overflow: hidden;
background: #000;
padding: 0 0 5px 0;
}
ul.newsticker { /* that's your list */
position: relative;
left: 826px;
font-family:  Georgia, Times, serif;
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: 0;
}
ul.newsticker a {
text-decoration: none;
white-space: nowrap;
padding: 0;
color: #FFF;
margin: 0 25px 0 0;
}
ul.newsticker span {
margin: 0 10px 0 0;
}


