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

.tickercontainer { /* the outer div with the black border */
	width: 964px; 
	height: 16px; 
	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: 0px;
	top: 0px;
	width: 944px;
	overflow: hidden;
}
ul.newsticker { /* that's your list */
	position: relative;
	left: 976px;
	font-size: 14px;
	line-height:16px;
	font-weight: normal;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
ul.newsticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0;
	padding: 0;
}
ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	color: #fff;
	margin: 0;
	font-size: 14px;
	line-height:16px;
	font-weight: normal;
}
ul.newsticker div {
	white-space: nowrap;
	padding: 0;
	color: #fff;
	margin: 0 200px 0 0;
	font-size: 14px;
	font-weight: normal;
}
ul.newsticker span {
	margin: 0;
	color:#FFF100;
}
