/* liScroll styles */

#newsticker .tickercontainer { /* outer div */
	background: #fff; 
	width: 550px; 
	height: 20px; 
	margin: 0; 
	padding: 0;
	overflow: hidden;
}

#newsticker .tickercontainer .mask { /* serves as a mask - fakes padding */
	position: relative;
	left: 0;
	top: 0;
	width: 550px;
	overflow: hidden;
}

#newsticker ul.newsticker { /* news list */
	position: relative;
	left: 550px;
	font-weight: bold;
	font-size: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

#newsticker ul.newsticker li {
	float: left; /* inline gives incorrect results with width */
	margin: 0;
	padding: 0;
	background: #fff;
}

#newsticker ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	color: #616365;
	text-decoration: underline;
	font-weight: bold;
	font-size: 12px;
	margin: 0 80px 0 0;
} 

#newsticker ul.newsticker span {
	margin: 0 5px 0 0;
}

