/* liScroll style declarations */
/* the outer div with the black border */
.tickercontainer {
	position: absolute;
	top: 80px;
	left: 2px;
	background: rgba(255,255,255,0.3);
	width: 260px;
	height: 18px;
	margin: 0 0 0 0px;
	padding: 0;
	overflow:hidden;
}
/* that serves as a mask. so you get a sort of padding both left and right */
.tickercontainer .mask {
	position: relative;
	color: #000;
	left: 0px;
	top: 0px;
	width: 324px;
	overflow: hidden;
}
/* that's your list */
ul.newsticker {
	position: relative;
	left: 260px;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
/* important: display inline gives incorrect results when you check for elem's width */
ul.newsticker li {
	white-space: nowrap;
	float: left;
	margin: 0;
	padding: 0;
	color:#ffffff;
	line-height:18px;
}
ul.newsticker span {

}
