/* liScroll styles */
.new-blk{
	position:relative;
	min-height:1px;
	}
.tickercontainer { /* the outer div with the black border */
	width: 746px; 
	height: 32px; 
	margin: 0; 
	padding: 0;
	overflow: hidden; 
	background-color:#3b3b3b;
	}
.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: 746px;
	overflow: hidden;
	}
ul.newsticker { /* that's your list */
	position: relative;
	left: 750px;
	font-family:"Trebuchet MS";
	font-size:12px;
	color:#ffffff;
	font-weight:bold;
	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 0 0 10px;
	padding: 0;
	}
.lt-crv,
.rt-crv{
	position:absolute;
	top:0px;
	width:6px;height:32px;
	display:block;
	z-index:9999;
	}
.lt-crv{
	background:url(../images/ticker-ltimg.png) no-repeat 0 0;
	left:0px;
	}
.rt-crv{
	background:url(../images/ticker-rtimg.png) no-repeat 0 0;
	right:0px;
	}
.inductive-rt{
	position:absolute;
	width:111px;
	padding:8px 0 6px 0;
	padding-left:5px;
	background:#191919;
	left:6px; top:0px;
	font-weight:bold;
	font-size:12px;
	font-family:"Trebuchet MS";
	color:#f40d07;
	z-index:99;
	}
	
