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

/* liScroll style declarations */

.tickercontainer { /* the outer div with the black border */
	width: 625px;
	height: 41px;

	padding: 0
	overflow: hidden;
	margin: 0;
	background-image: url(../img/top/headline_bg2.gif);
	background-repeat: no-repeat;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	left: 88px;
	top: 16px;
	width: 536px;
	overflow: hidden;
}
ul.newsticker { /* that's your list */
	position: relative;
	left: 750px;
	font: bold 10px;
	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;
	height: 15px;
	overflow: visible;
	line-height: 15px;
	font-size: 14px;
	white-space: nowrap;
	color: #FFFFFF;
}
ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	color: #ff0000;
	margin: 0 25px 0 0;
	font-size: 10px;
	font-weight: bold;
} 
ul.newsticker span {
	margin: 0 10px 0 0;
}

