/*Example CSS for the two demo tickers*/
	a:link, a:visited{ /*Added links attributes*/
		color: #FA0000; text-decoration: none;
		}
	a:hover, a:active{
		color:#ADADAD ; text-decoration: none; 
		}

#domticker{
width: 450px;
height: 30px;

text-align: center;
padding: 5px;
/*background-color: #484848;
border: 1px dashed black;*/
}

#domticker div{ 
/*IE6 bug fix when text is bold and fade effect (alpha filter) is enabled. Style inner DIV with same color as outer DIV
background-color: #484848;*/
margin-top: 20px;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size:12pt;
	color:#ffffff;
}

#domticker a{
font-weight: bold;
}

#domticker2{
width: 350px;
height: 1.2em;
border: 1px solid black;
padding: 3px;
}

#domticker2 a{
text-decoration: none;
}

.someclass{ //class to apply to your scroller(s) if desired
}