

/*Example CSS for demo ticker*/

#ajaxticker1{
width: 300px;
margin-top: 20px;
height: 75px;
}

#ajaxticker1 a {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight:bold;
color: #ffffcc;
text-decoration: none;
}

#ajaxticker1 a:hover {
color: #000000;
text-decoration: underline;
}

#ajaxticker1 div{ /*IE6 bug fix when text is bold and fade effect (alpha filter) is enabled. Style inner DIV with same color as outer DIV*/
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #ffffff;
font-weight:bold;
}

#ajaxticker1 a div{ /*IE6 bug fix when text is bold and fade effect (alpha filter) is enabled. Style inner DIV with same color as outer DIV*/
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #000000;
font-weight:bold;
text-decoration: none;
}

#ajaxticker1 a:hover div{ /*IE6 bug fix when text is bold and fade effect (alpha filter) is enabled. Style inner DIV with same color as outer DIV*/
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #ffffff;
font-weight:bold;
text-decoration: underline;
}

.someclass{ //class to apply to your scroller(s) if desired
}


