/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
background-color: #600202;
width: 100%; 
height: 27px; 
margin: 0; 
padding: 0px 0px 15px 0px;
overflow: hidden; 
bottom: 0px;
position: fixed;
z-index:99999;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 18px;
line-height: 22px;
border-top:solid 1px #f29d40;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 10px;
top: 10px;
width: 100%;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 100%;
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 50px 0 0;
height:22px;
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
margin: 0 20px 0 0;
} 

