/* Ticker Styling */
.ticker-wrapper.has-js {
	margin: 8px 0px 0px 0px;
	padding: 0px 0px;
	width: 100%;  /* PS */
	height: 52px;
	display: block;
	/* -webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	 border-radius: 15px; */
	background-color: #FEFEFE;
	font-size: 0.8em;  /* PS */
	position: relative; /* PS - make controls posn abs */
}
.ticker {
	width: 100%; /* PS */
	height: 42px;  /* PS */
	display: block;
	position: relative;
	overflow: hidden;
	background-color: #FDFDFD;
}
.ticker-title {
	padding-top: 2px;
	color: #00B8F1;
	font-weight: bold;
	background-color: #FDFDFD;
	text-transform: uppercase;
	width: 100px; /* PS only for Safari? */
}
.ticker-content {
	margin: 0px;
	padding-top: 2px;
	position: absolute;
	color: #000000;
	font-weight: bold;
	background-color: #FDFDFD;
	overflow: hidden;
	white-space: normal;  /* PS */
	line-height: 1.1em;  /* PS */
}
.ticker-content:focus {
	none;
}
.ticker-content a {
	text-decoration: none;	
	/* was color: #1F527B; #22AAFF;  */
	color: #0066FF;
}
.ticker-content a:hover {
	text-decoration: underline;
	color: #0099FF;	
	/* PS color: #0D3059; */
}
.ticker-swipe {
	padding-top: 9px;
	position: absolute;
	top: 0px;
	background-color: #FDFDFD;
	display: block;
	width: 100%; /* PS */
	height: 42px; 
}
.ticker-swipe span {
	margin-left: 1px;
	background-color: #FDFDFD;
	border-bottom: 1px solid #1F527B;
	height: 12px;
	width: 7px;
	display: block;
}

/* PS 29/10/13 Bootstrap has ul margin-left: 25 set to 0 to posn controls properly */
ul.ticker-controls { margin-left: 0; }

.ticker-controls {
	padding: 8px 0px 0px 0px;
	list-style-type: none;
	/* PS float: left; move to underneath Latest News */
	position: absolute;
	top: 18px; left: 0;
}
.ticker-controls li {
	padding: 0px;
	margin-left: 8px;
	float: left;
	cursor: pointer;
	height: 16px;
	width: 16px;
	display: block;
}

/* PS for Tablets etc */
@media (max-width: 767px) {

.navbar-fixed-bottom {position: fixed!important; bottom: none; }
.ticker-wrapper.has-js { height: 66px; }
.ticker {height: 56px; }
.ticker-swipe { height: 56px; }
.ticker-title { width: 16px; font-size: 12px; }
.ticker-title span { display: none; }
.ticker-controls {top: -8px; left: 0; }
.ticker-controls li { margin-left: 6px; margin-bottom: 4px; float: none; }
}

.ticker-controls li.jnt-play-pause {
	background-image: url('controls.png'); /* UPDATED PS 29/10/13 ..images/controls.png */
	background-position: 32px 16px;
}
.ticker-controls li.jnt-play-pause.over {
	background-position: 32px 32px;
}
.ticker-controls li.jnt-play-pause.down {
	background-position: 32px 0px;
}
.ticker-controls li.jnt-play-pause.paused {
	background-image: url('controls.png');	
	background-position: 48px 16px;
}
.ticker-controls li.jnt-play-pause.paused.over {
	background-position: 48px 32px;
}
.ticker-controls li.jnt-play-pause.paused.down {
	background-position: 48px 0px;
}
.ticker-controls li.jnt-prev {
	background-image: url('controls.png');
	background-position: 0px 16px;		
}
.ticker-controls li.jnt-prev.over {
	background-position: 0px 32px;		
}
.ticker-controls li.jnt-prev.down {
	background-position: 0px 0px;		
}
.ticker-controls li.jnt-next {
	background-image: url('controls.png');	
	background-position: 16px 16px;	
}
.ticker-controls li.jnt-next.over {
	background-position: 16px 32px;	
}
.ticker-controls li.jnt-next.down {	
	background-position: 16px 0px;	
}
.js-hidden {
	display: none;
}
.no-js-news {
	padding: 10px 0px 0px 45px; 
	color: #FDFDFD;
}
.left .ticker-swipe {
	/*left: 80px;*/
}
.left .ticker-controls, .left .ticker-content, .left .ticker-title, .left .ticker {
    float: left;
}
.left .ticker-controls {
    padding-left: 0px; /* PS */
}
.right .ticker-swipe {
	/*right: 80px;*/
}
.right .ticker-controls, .right .ticker-content, .right .ticker-title, .right .ticker {
    float: right;
}
.right .ticker-controls {
    padding-right: 6px;
}