/* liScroll style declarations */
/* the outer div with the black border */
.tickercontainer {
	width: 600px;
	height: 20px;
	margin: 0 auto;
	padding: 0;
	overflow:hidden;
}
/* that serves as a mask. so you get a sort of padding both left and right */
.tickercontainer .mask {
	position: relative;
	color: #ffffff;
	left: 0px;
	top: 0px;
	width: 600px;
	overflow: hidden;
}
/* that's your list */
ul.newsticker {
	position: relative;
	left: 600px;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
/* important: display inline gives incorrect results when you check for elem's width */
ul.newsticker li {
	white-space: nowrap;
	float: left;
	margin: 0;
	padding: 0;
	line-height: 20px;
}
ul.newsticker span {
	margin: 0 40px 0 0;
}
