/* liScroll style declarations */
.tickercontainer { /* the outer div with the black border */
	border: 0;
	background: #CACC8D; 
	width: 786px; 
	height: 27px; 
	margin: 0; 
	padding: 0;
	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: 6px;
	width: 766px;
	overflow: hidden;
}
ul.newsticker { /* that's your list */
	position: relative;
	left: 750px;
	font: bold 11px Verdana;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
ul.newsticker li {
	white-space: nowrap;
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0;
	padding: 0;
	color: #000000;
	background: #CACC8D;
	font: normal 12px Verdana;
	font-weight: normal;
}
ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	color: #72182B;
	font: normal 12px Verdana;
	font-weight: bold;
	margin: 0 0px 0 0;
} 
ul.newsticker span {
	font-weight: bold;
	text-decoration: underline;
	color: #72182B;
	margin: 0 3px 0 0;
}
ul.newsticker div {
	margin: 0 50px 0 0;
}