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