/* liScroll styles */

body{
	overflow: hidden;
	margin: 0px;
	padding: 0px;

}

#main_wrapper {
	width: 720px;
	height: 576px;
/*	border: thin dashed rgba(255,0,0,1);
	background-image: url(images/b_test.jpg);
*/}


.tickercontainer { /* the outer div with the black border */
	border: 0px solid #000;
	width: 720px;
	height: 40px;
	margin: 0;
	overflow: hidden;
	background-color: rgba(0,0,0,0.5);
	padding-top: 50;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	margin-top: 475px;
	-webkit-box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.5);
}

.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 10px;
top: 8px;
width: 720px;
overflow: hidden;
}

ul.newsticker { /* that's your list */
	position: relative;
	left: 750px;
	list-style-type: none;
	margin: 0;
	font-family: Verdana;
	font-size: 18px;
	font-weight: bold;
	color: rgba(255,255,255,1);
	text-shadow: 0px 0px 7px rgba(0,0,0,0.7);
	padding-top: 50;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	white-space: nowrap;
}

ul.newsticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */
	margin: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #ff0000;
font: bold 10px Verdana;
} 

ul.newsticker .item {
margin: 0 30px 0 0;
} 

ul.newsticker .dot {
	margin: 0 5px 0 0;
	color: rgba(255,102,0,1);
} 