@charset "UTF-8";
/* CSS Document */

/* liScroll styles */

.tickercontainer, #results { /* the outer div with the black border */
	width: 100%; 
	height: 35px; 
	margin: 0; 
	margin-bottom: 20px; 
	padding: 0;
	overflow: hidden;
	background-color: #005282;
	color: #fff;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	left: 0;
	top: 8px;
	width: 100%;
	height: 35px; 
	overflow: hidden;
}
ul.newsticker { /* that's your list */
	position: relative;
	left: 550px;
	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;
	font-size:14px;
	height: 35px;
	white-space: nowrap;
}
ul.newsticker a:link,
ul.newsticker a:visited {
	color: #fff;
	padding: 0 20px 0 0;
	font: normal 14px/14px "FrutigerLTW01-67BoldCn", Arial, Helvetica, Geneva, sans-serif;
} 
ul.newsticker span {
	padding: 0 10px 0 0;
	color: #fff;
	font: normal 14px/14px "FrutigerLTW01-67BoldCn", Arial, Helvetica, Geneva, sans-serif;
} 