﻿.tickercontainer { 
/* the outer div */
	width: 993px;
	height: 24px;
	margin: 5px;
	padding: 0;
	overflow: hidden;
	clear:both;
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
	position: relative;
	top: 3px;
	height: 18px;
	/*width: 718px;*/
	overflow: hidden;
}
ul.newsticker { /* that's your list */
	position: relative;
	/*left: 750px;*/
	/*font: bold 15px Verdana;*/
	font-family:"Helvetica", sans-serif;
	font-weight:bold;
	font-size:15px;
	list-style-type: none;
    -webkit-transition: all 0s linear;
    -moz-transition: all 0s linear;
    -o-transition: all 0s linear;
    transition: all 0s linear;
	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-right: 15px;
/*background: #fff;*/
}

.tickercontainer a:link, 
.tickercontainer a:hover, 
.tickercontainer a:focus{
	color:#0e76bc; /*asa-txtbluemedium*/
}
.tickercontainer a:visited{
	color:#0a588d; /*asa-txtbluedark*/
}
