@charset "utf-8";

/* Main */
.modern-ticker-header {
	width: 87px;
	height: 20px;
	line-height: 20px;
	margin-top: 5px;
	padding: 2px 2px 2px 5px;
	float:left;
	color: #333333;
	font-weight:bold;
	background-color: #e9f2f6;
	white-space:nowrap;	
		overflow: hidden;
}

.modern-ticker {
	width: 470px;
	height: 19px;
	margin-top: 5px;
	padding: 3px 2px 2px 5px;
	float:right;
	color: #fafafa;
	background-color: #e9f2f6;
	text-alignment:center;
		overflow: hidden;
}
.modern-ticker a {
	text-decoration: none;
}
.modern-ticker ul {
	margin: 0;
	padding: 0px;
	list-style: none;
}
.mticker-round {
	border-radius: 4px;
}
	
	.mticker-round .mticker-label {
		border-radius: 5px 0 0 5px;
	}
	
	/* News */
	.mticker-news {
		overflow: hidden;
		float: left;
	}
	.mticker-scroll .mticker-news {
		background-color: transparent;
	}
	.mticker-round .mticker-news:first-child, .mticker-round .mticker-news:first-child a {
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
	}
	.mticker-round .mticker-news:last-child, .mticker-round .mticker-news:last-child a {
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
	}
	.mticker-scroll.mticker-round .mticker-news a {
		border-radius: 0;
	}
	.mticker-news ul {
		width: 500px;
		
		/* Preload */
		background-repeat: no-repeat;
		background-position: -1000px;
	}
	.mticker-news li {
		float: left;
	}
	.mticker-news a {
		font-size: 13px;
		padding: 2px;
		margin-right: 2px;
		color: #333333;
		background-repeat: no-repeat;
		background-position: 7px center;
		display: block;
	}
	.mticker-news a:hover {
	}
	.mticker-news a:active {
	}
	
	/* Controls */
	.mticker-controls {
		margin-left: 2px;
		height: 100%;
		float: right;
		
		/* Preload */
		background-image: url("images/mticker-pause.png");
		background-repeat: no-repeat;
		background-position: -1000px;
	}
	.mticker-play, .mticker-prev, .mticker-next {
		width: 30px;
		height: 30px;
		background-repeat: no-repeat;
		background-position: center;
		cursor: pointer;
		float: left;
	}
	.mticker-prev, .mticker-next {
		background-color: #ff3300;
	}
	.mticker-prev {
		background-image: url("images/mticker-arrow-prev.png");
	}
	.mticker-next {
		background-image: url("images/mticker-arrow-next.png");
	}
	.mticker-round .mticker-next {
		border-radius: 0 5px 5px 0;
	}
	.mticker-play {
		background-color: #ff5500;
		background-image: url("images/mticker-play.png");
	}
	.mticker-pause {
		background-image: url("images/mticker-pause.png");
	}
	.mticker-play:hover, .mticker-prev:hover, .mticker-next:hover {
		background-color: #0099ff;
	}
	.mticker-play:active, .mticker-prev:active, .mticker-next:active {
		background-color: #0077ff;
	}
