
/* liScroll style declarations */
.tickercontainer { /* the outer div with the black border */
	width:505px; 
	height:27px; 
	margin-left:14px; 
	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: 8px;
	width: 505px;
	overflow: hidden;
}
ul.newsticker { /* that's your list */
	position: relative;
	left: 500px;
	font: bold 10px Verdana;
	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;
	background: #fff;
	color:#ccdae5;
	font:13px Verdana;
}
ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	font:13px Verdana;
	margin:0 5px 0 5px;
	color:#00447e;
} 
ul.newsticker a:hover {
	text-decoration:underline;
}

div#Newsdetail {
	font-family:Verdana;
	font-size:11px;
	color:#00447e;
	background-color:#CCDAE5;
	height:100%;
}
div#Newsdetail h3 {
	margin-bottom:5px;
	font-size:16px;
	font-weight:bold;
}
