/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
	background: #fff;
	width: 970px;
	height: 24px;
	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: 10px;
	top: 0px;
	width: 950px;
	overflow: hidden;
	height: 24px;
}
ul.newsticker { /* that's your list */
	position: relative;
	left: 950px;
	font-size: 12px;
	color: #222;
	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;
}
ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	color: #ff0000;
	font-size: 12px;
	color: #222;
	margin: 0 10px 0 0;
}
ul.newsticker span {
	color: #009CDA;
	margin: 0 0 0 10px;
}

.news-ticker	{
	width: 970px;
	min-height: 24px;
	display: block;
	position: fixed;
	top: 0;
	background: #fff;
    overflow: hidden;
    z-index: 10000;
}
.news-ticker-inner	{
	position: relative;
}
.news-ticker .nt-start	{
	position: absolute;
	z-index: 10000;
	width: 30px;
	height: 24px;
	top: 0;
	left: 0;
	background: transparent url(../imgs/li_scroller/bg_newstricker_start.png) 0 0 no-repeat;
}
.news-ticker .nt-end	{
	position: absolute;
	z-index: 10000;
	min-width: 20px;
	height: 24px;
	top: 0;
	right: -10px;
	background: transparent url(../imgs/li_scroller/bg_newstricker_end.png) 0 0 no-repeat;
	padding-left: 20px;
}
.news-ticker .nt-end a	{
	background: #3e4145;
	color: #fff;
	font-weight: bold;
	line-height: 24px;
	font-size: 14px;
	display: block;
	padding: 0 10px;
	text-decoration: none;
}
