@charset "UTF-8";
/* CSS Document */

/* liScroll style declarations */

.tickercontainer { /* the outer div with the black border */
	border: 1px solid #CCCCCC;
	background: #F2F2F2 url(../images/bg_newsticker.gif) no-repeat left top;
	width: 528px;
	height: 1.9em;
	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: 4px;
	top: 6px;
	width: 520px;
	overflow: hidden;
}
ul.newsticker { /* that's your list */
	position: relative;
	left: 528px;
	margin: 0px;
	padding: 0px;
	font-size: 93%;
	font-weight: normal;
	color: #333333;
	list-style-type: none;
}
ul.newsticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	white-space: nowrap;
}
ul.newsticker a {
	white-space: nowrap;
	padding: 0px;
}
ul.newsticker span {
	padding: 0px;
	margin: 0px 20px 0px 0px;
} 
