/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
	width: 720px;
	margin: 10px 0 0 230px;
	padding: 0;
	overflow: hidden;
	float:left;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	width: 720px;
	height: 40px;
	overflow: hidden;
}
ul.newsticker { /* that's your list */
	width: 30000px !important;
	height: 30px;
	position: relative;
	left: 500px;
	list-style-type: none;
	overflow: hidden;
	margin: 15px 0 0;
}
ul.newsticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin:0 0 0 100px;
	white-space: nowrap;
	vertical-align: middle;
}
ul.newsticker a {
	white-space: nowrap;
	text-decoration: underline;
}
ul.newsticker a:hover {
	text-decoration: none;
}