/* liScroll styles */

/* the outer div with the black border */
.tickercontainer {

}

/* that serves as a mask. so you get a sort of padding both left and right */
.tickercontainer .mask { 
	position: relative;
	left: 0px;
	top: 0px;
	width: 100%;
	overflow: hidden;
}

/* that's your list */
ul.newsticker {
	position: relative;
	left: 750px;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

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