@charset "utf-8";

/* TICKER */
.modern-ticker {
	width: 100%;
	height: 30px;
	margin: 10px auto 0;
	line-height: 30px;
	font-size: 16px;
	overflow: hidden;
}

.modern-ticker.mt-font {
	font-family: Arial, sans-serif;
}
.modern-ticker.mt-round {
	border-radius: 7px;
}
.modern-ticker ul,
.modern-ticker li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.modern-ticker a,
.modern-ticker a:hover {
	text-decoration: none;
}

/* Body */
.modern-ticker .mt-body {
	position: relative;
}

/* Label */
.modern-ticker .mt-label {
	padding: 0 12px 0 12px;
	
	height: 30px;
	position: absolute;
	left: 0;
}
.modern-ticker.mt-round .mt-label {
	border-radius: 5px 0 0 5px;
}

/* News */
.modern-ticker .mt-news {
	overflow: hidden;
	position: absolute;
}
.modern-ticker.mt-scroll div.mt-news {
	background-color: transparent;
}
.modern-ticker .mt-news li {float: left;
}

.modern-ticker .mt-news li:after {
	content: "";
	pointer-events: none;
	position: absolute;
	width: 100px;
	height: 100%;
	top: 0; right: 0;
	
	background-image: -webkit-linear-gradient(right, rgba(233, 233, 233, 1), rgba(233, 233, 233, 0));
	background-image: -moz-linear-gradient(right, rgba(233, 233, 233, 1), rgba(233, 233, 233, 0));
	background-image: -ms-linear-gradient(right, rgba(233, 233, 233, 1), rgba(233, 233, 233, 0));
	background-image: -o-linear-gradient(right, rgba(233, 233, 233, 1), rgba(233, 233, 233, 0));
	background-image: linear-gradient(to left, rgba(233, 233, 233, 1), rgba(233, 233, 233, 0));
}
.modern-ticker.mt-round .mt-news:first-child,
.modern-ticker.mt-round .mt-news:first-child a {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.modern-ticker.mt-round .mt-news:last-child,
.modern-ticker.mt-round .mt-news:last-child a {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.modern-ticker .mt-news a {
	font-size: 15px;
	font-weight: normal;
	padding: 0 10px 0 10px;
	margin-right: 2px;
	background-repeat: no-repeat;
	background-position: 7px center;
	display: block;
	white-space: nowrap;
}

.modern-ticker.mt-scroll.mt-round .mt-news a {
	border-radius: 0;
}

@media (max-width: 820px) {
.modern-ticker {
	width: 100%;
	height: 22px;
	margin: 5px auto 0;
	line-height: 22px;
	font-size: 12px;
	overflow: hidden;
}
	.modern-ticker .mt-news a {
		font-size: 12px;
		
	padding: 0 5px 0 5px;
	}
}
.modern-ticker .mt-hide {
	display: none;
}
.modern-ticker .mt-error {
	font-size: 15px;
	font-style: italic;
	text-align: center;
	margin: 0;
}

/* Controls */
.modern-ticker .mt-controls {
	position: absolute;
	right: 0;
	/* Preload */
	background-repeat: no-repeat;
	background-position: -1000px;
}
.modern-ticker .mt-play,
.modern-ticker .mt-prev,
.modern-ticker .mt-next {
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: center;
	float: left;
	cursor: pointer;
}
@media (max-width: 680px) {
.modern-ticker .mt-play,
.modern-ticker .mt-prev,
.modern-ticker .mt-next {
	display: none;
}
}
.modern-ticker.mt-round .mt-controls div:last-child {
	border-radius: 0 5px 5px 0;
}



/* THEME 14 - HRL TICKER */
.modern-ticker.mt-theme14 {
	color: #EBEBEB;
}

/* Label */
.modern-ticker.mt-theme14 .mt-label {
	background-color: #666;
}

/* News */
.modern-ticker.mt-theme14 .mt-news {
	background-color: #DADADA;
}
.modern-ticker.mt-theme14 .mt-preloader {
	background: url("images/preloader-white.gif") no-repeat center;
}

.modern-ticker.mt-theme14 .mt-news a {
	color: #666;
}
.modern-ticker.mt-theme14 .mt-news a:hover {
	color: #23527c;
	text-decoration: underline;
}
.modern-ticker.mt-theme14 .mt-error {
	color: #fff;
}

/* Controls */
.modern-ticker.mt-theme14 .mt-controls {
	/* Preload */
	background-image: url("images/pause-fafafa.png");
}
.modern-ticker.mt-theme14 .mt-prev,
.modern-ticker.mt-theme14 .mt-next {
	background-color: #666;
}
.modern-ticker.mt-theme14 .mt-prev {
	background-image: url("images/prev-fafafa.png");
}
.modern-ticker.mt-theme14 .mt-next {
	background-image: url("images/next-fafafa.png");
}
.modern-ticker.mt-theme14 .mt-play {
	background-color: #5f5f5f;
	background-image: url("images/play-fafafa.png");
}
.modern-ticker.mt-theme14 .mt-pause {
	background-image: url("images/pause-fafafa.png");
}
.modern-ticker.mt-theme14 .mt-play:hover,
.modern-ticker.mt-theme14 .mt-prev:hover,
.modern-ticker.mt-theme14 .mt-next:hover {
	background-color: #0099ff;
}
.modern-ticker.mt-theme14 .mt-play:active,
.modern-ticker.mt-theme14 .mt-prev:active,
.modern-ticker.mt-theme14 .mt-next:active {
	background-color: #0077ff;
}

