/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
	height: 14px;
	border-top: 2px solid white;
	border-bottom: 2px solid white;
	width: 588px;
	margin: 0; 
	padding: 0
	overflow: hidden; 
}

.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	left: 5px;
	top: 0px;
	width: 580px;
	overflow: hidden;
}

ul.newsticker { /* that's your list */
	position: relative;
	font: 12px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	list-style-type: none;
	margin: 0;
	padding: 0;
	color: white;
	width: 1500px;
	height: 14px;
}

ul.newsticker li.ticker {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0;
	padding: 0;
	height: 14px;
	*font-family: Arial, Helvetica, Geneva, sans-serif;
}

ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	color: #fff;
	font: 12px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	margin: 0 0px 0 0;
	text-decoration: none;
}

ul.newsticker span {
margin: 0 10px 0 0;
} 
