/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
	box-sizing: border-box;
  height: 82px;
  margin: 42px 0 0 204px;
  padding: 10px 0 0;
  width: 628px;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	overflow: hidden;
  position: relative;
  padding: 18px 0 0;
}
ul.newsticker { /* that's your list */
	position: relative;
	left: 600px;
	list-style-type: none;
	padding: 0;
	width: 90000px !important;
}
ul.newsticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0 0 0 60px;
	white-space: nowrap;
}
ul.newsticker a {
	white-space: nowrap;
}
