/* liScroll styles */

.tickercontainer { /* the outer div */
/*background: #c31011;*/
margin: 0; 
padding: 0 0 20px 0;
overflow: hidden; 
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
margin: 0; 
padding: 0;
overflow: hidden;
}

ul.newsticker { /* that's your list */
/*Transitions have been added in order set css3 transitions; and have linear easing. Changing these lines you might have unexpected results */
-webkit-transition: all 0s linear;
-moz-transition: all 0s linear;
-o-transition: all 0s linear;
transition: all 0s linear;
position: relative;
list-style-type: none;
margin: 0;
padding: 0;
margin-left: 200px; 
}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding:0;
padding-right: 10px;
font-weight:normal;
text-transform:uppercase;
color:#666666;
white-space: nowrap;
}

ul.newsticker li.title a{
	text-transform:uppercase;
	color:#666666;
	/*background-image: url(../../../bilder/pfeil_rechts_klein.png);
	background-position: 0px 3px;
	background-repeat: no-repeat;*/
	padding-left:10px;	
	margin-right:10px;
	margin-left:20px;
}

ul.newsticker a {
white-space: nowrap;
padding: 0;
color:#990000;
font-weight:normal;
margin: 0;
text-decoration:none;
} 


