.twitter-ticker {
	width: 100%;
	height: 36px;
	line-height: 30px;
	font-size: 16px;
	overflow: hidden;
}
.twitter-ticker.mt-font {
	font-family: Arial, sans-serif;
}
.twitter-ticker ul,
.twitter-ticker li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.twitter-ticker a,
.twitter-ticker a:hover {
	text-decoration: none;
}

/* Body */
.twitter-ticker .mt-body {
	margin: 2px;
	position: relative;
}

/* Label */
.twitter-ticker .mt-label {
	margin-right: 20px;
	padding-right: 20px;
	position: absolute;
	left: 0;
}
.twitter-ticker.mt-round .mt-label {
	border-radius: 5px 0 0 5px;
}

/* News */
.twitter-ticker .mt-news {
	overflow: hidden;
	position: absolute;
}
.twitter-ticker.mt-scroll .mt-news {
	background-color: transparent;
}
.twitter-ticker .mt-news ul {
	/* Preload */
	background-repeat: no-repeat;
	background-position: -1000px;
}
.twitter-ticker .mt-news li {
	float: left;
}
.twitter-ticker.mt-round .mt-news:first-child,
.twitter-ticker.mt-round .mt-news:first-child a {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.twitter-ticker.mt-round .mt-news:last-child,
.twitter-ticker.mt-round .mt-news:last-child a {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.twitter-ticker .mt-news a {
	font-size: 1.2rem;
	font-weight: normal;
	padding: 0 30px 0 40px;
	margin-right: 2px;
	background-repeat: no-repeat;
	background-position: 7px center;
	display: block;
	white-space: nowrap;
}
.twitter-ticker.mt-scroll.mt-round .mt-news a {
	border-radius: 0;
	color: #3E3E3E;
}
.twitter-ticker .mt-hide {
	display: none;
}
.twitter-ticker .mt-error {
	font-size: 15px;
	font-style: italic;
	text-align: center;
	margin: 0;
}

/* Controls */
.twitter-ticker .mt-controls {
	margin-left: 20px;
	padding-left: 10px;
	border-left: 1px solid #D7D6D6;
	position: absolute;
	right: 0;
	/* Preload */
	background-repeat: no-repeat;
	background-position: -1000px;
}
.twitter-ticker .mt-play,
.twitter-ticker .mt-prev,
.twitter-ticker .mt-next {
	width: 30px;
	height: 36px;
	background-repeat: no-repeat;
	background-position: center;
	float: left;
	cursor: pointer;
}
.twitter-ticker.mt-round .mt-controls div:last-child {
	border-radius: 0 5px 5px 0;
}
.twitter-ticker .mt-prev {
    background-image: url("../images/twitter_prev.svg");
}
.twitter-ticker .mt-next {
    background-image: url("../images/twitter_next.svg");
}
.twitter-ticker .mt-play{
	background-image: url("../images/twitter_play.svg");
}
.twitter-ticker .mt-play.mt-pause{
	background-image: url("../images/twitter_pause.svg");
}