/* liScroll style declarations */

.tickercontainer .tickermask h3{
 margin-top: 0px;
}

.tickercontainer { /* the outer div*/
background: #fff;
width: 940px;
height: 25px;
margin: 0;
padding: 0
overflow: hidden;
}
.tickercontainer .tickermask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
width: 940px;
overflow: hidden;
}
ul#ticker01 { /* that's your list */
position: relative;
left: 750px;
font: bold 10px Verdana;
list-style-type: circle;
margin: 0;
padding: 0;

}
ul#ticker01 li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding: 0;
background: #fff;
height: 25px;
}
ul#ticker01 h3 {
background: none;
white-space: nowrap;
margin: 0;
padding: 0 100px 0 0;
}
ul.newsticker span {
margin: 0 10px 0 0;
} 
