#ticker-wrapper *{
	margin:0;
	line-height:25px;
}
.tick-tick{
    float:left;
	color: #fff;
    margin: 0;
    padding: 0 6px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #4374ab;
}

#ticker-wrapper .has-js{
	height:30px;
	display:block;
	font-family: Trebuchet MS, Tahoma, Arial, sans-serif;
	font-size: 0.75em;
	margin:0px 0 0 20px;
}
#ticker{
	width:82%; 
	display:block;
	float:left;
	position:relative;
	overflow:hidden;
	background-color:#333;
	padding:0 0 0 10px
}
#ticker-title{
	padding-top:0px;
	float:left;
	color:#900;
	font-weight:700;
	background-color:#333;
	text-transform:uppercase
}
#ticker-content{
	padding-top:0px;
	float:left;
	position:absolute;
	color:#E84747;
	font-weight:700;
	background-color:#333;
	margin:0
}

#ticker-content a::before,
#ticker-content a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	-moz-transition: -moz-transform 0.3s, opacity 0.2s;
	transition: transform 0.3s, opacity 0.2s;
}

#ticker-content a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	-moz-transform: translateX(20px);
	transform: translateX(20px);
}

#ticker-content a::after {
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	transform: translateX(-20px);
}

#ticker-content a:hover::before,
#ticker-content a:hover::after,
#ticker-content a:focus::before,
#ticker-content a:focus::after {
	opacity: 1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
}
#ticker-swipe{
	padding-top:0px;
	position:absolute;
	top:0;
	left:80px;
	background-color:#333;
	display:block;
	width:85%;
	height:23px
}
#ticker-swipe span{
	margin-left:1px;
	background-color:#333;
	height:18px;
	width:7px;
	display:block
}

#ticker-controls {
    float: left;
    list-style-type: none;
}
#ticker-controls li {
    cursor: pointer;
	font-family: "tuxed";
    display: block;
    float: left;
    height: 16px;
    margin-left: 5px;
    padding: 0;
    width: 16px;
}
#ticker-controls li#play-pause:before {
    content:  '\e812';
}
#ticker-controls li#play-pause.paused:before {
    content: '\e815';
}
#ticker-controls li#play-pause.paused.over:before {
    color:#fff;
}
#ticker-controls li#play-pause.paused.down:before {
    color:#fff;
}
#ticker-controls li#prev:before {
    content: '\e816';
}
#ticker-controls li#prev.over:before {
    color:#fff;
}
#ticker-controls li#prev.down:before{
    color:#fff;
}
#ticker-controls li#next:before {
    content: '\e817';
}
#ticker-controls li#next.over:before {
    color:#fff;
}
#ticker-controls li#next.down:before {
    color:#fff;
}

.js-hidden{
	display:none
}
.current-time{ 
	margin-top:5px;
}
/* Tablets (portrait) | <800px */
@media only screen and (max-width: 50em) { 
#ticker{
	width:70%; 
	}
#ticker-controls {
    display: none;
}