/* ===== Ticker ===== 
 * by Anders Ytterström <anders.ytterstrom@gmail.com>
 * About: http://madr.se/code/ticker | http://madr.se/blog/101
 * usage: MIT style
 * 
 * i.	Main
 * ii.	only if js
 * iii.	if ie (to move to own file!)
 */
/* == main == */
.ticker {
	background:#e8e8e8;
	overflow:hidden;
	width: 896px;
	height: 25px;
}

	.ticker a {
	white-space:nowrap;
	text-decoration:none;
	color:#000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.99em;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	margin: auto
	padding: 0px;
	}
	
	.ticker h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size:14px;
	padding:2px 0px 0px 0px;
	margin:0 5px 0 0;
	color:#fff;	
	}
	
	.ticker ol {
		list-style:none;
		padding:0;
		margin:0;
	}
	
		.ticker li {
			padding:2px 2px;
			margin:0;
		}
/* == / main == */
					
/* == only if js == */
.ticker.on h2 {
	float:left;
}

.ticker.on li {
	display:none;
	float:left;
	overflow:hidden;
}

	.ticker.on li.active {display:block;}
	
	.ticker.on li.active:after {
		padding:0 1px;
		text-decoration:blink;
	}
/* == / only if js == */

/* == if ie == */
/* == Consider putting this in a own file! == */
* html .ticker {
	overflow:visible;
	height:1px;
}
/* == / if ie */
/* ===== /Ticker ===== */

