/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
	width: 500px; 
	height: 15px; 
	padding: 0;
	margin: 0px auto;
	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: 0px;
	width: 3000px;
	height: 15px;
	overflow: hidden;
}
ul.newsticker { /* that's your list */
	position: relative;
	left: 460px;
	list-style-type: none;
	margin: 0;
	padding: 0;

}
ul.newsticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	padding: 0;
	line-height: 15px; 
	margin: 0 15px; 
	color: #000000;
}
ul.newsticker a, ul.newsticker a:link, ul.newsticker a:hover, ul.newsticker a:visited {
	white-space: nowrap;
	padding: 0;
	margin: 0;
	color: #333;
	text-decoration: none;
} 
ul.newsticker span {
	margin: 0 10px 0 0;
	color: #000000;
	
} 

