/* liScroll styles */
.tickercontainer { /* the outer div with the black border */
	margin: 0; 
	border: 0;
	padding: 0;
	
	width: 585px;
	height: 27px; 
	overflow: hidden; 
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	left: 10px;
	top: 8px;
	width: 718px;
	overflow: hidden;
}
ul.newsticker { /* that's your list */
	margin: 0;
	padding: 0;
	
	position: relative;
	left: 600px;
	list-style-type: none;
}
ul.newsticker li {
	margin: -3px 0 0 0;
	border: 0;
	padding: 0;
	
	color: #fff;
	font-size: 11px;
	
	float: left;
}
ul.newsticker li a {
	margin: 0 75px 0 0;
	border: 0;
	padding: 0;
	
	color: #fff;
	white-space: nowrap;
	font-weight: normal;
	text-decoration: none;
}
ul.newsticker li:last-child a { margin: 0; }

ul.newsticker a:hover { text-decoration: underline; }
ul.newsticker span {
	margin: 0 15px 0 0;
	
	color: #efc33b;
	font-weight: bold;
} 