/* liScroll style declarations */

#tickercnt {
	width: 970px;
	height: 20px;
	margin: 0 auto;
	overflow: hidden;
}

.tickercontainer { /* the outer div with the black border */
	width: 970px;
	height: 20px;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}

.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	left: 0px;
	top: 0px;
	width: 970px;
	height: 20px;
	overflow: hidden;
}

ul.newsticker { /* that's your list */
	position: relative;
	left: 970px;
	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;
	padding: 0px;
	height: 20px;
	line-height: 20px;
	font-size: 11px;
}

ul.newsticker a {
	white-space: nowrap;
	padding: 0px;
	color: #006699;
	text-decoration: none;
} 

ul.newsticker a:hover {
	color: #CC0000;
	text-decoration: none;
}

ul.newsticker span {
	margin-right: 10px;
	margin-left: 10px;
	color: #575757;
}

