/*
 * Skin for jPlayer Plugin (jQuery JavaScript Library)
 * http://www.happyworm.com/jquery/jplayer
 *
 * Skin Name: The Workers
 *
 * Author: Phillip Cheung
 * Skin Version: 1.0 (jPlayer 2.1.0)
 * Date: 30th May 2012
 * Note: Based on the Blue Monday skin
 */

div.jp-audio {

	/* Edit the font-size to counteract inherited font sizing.
	 * Eg. 1.25em = 1 / 0.8em
	 */

	font-size:1.25em; /* 1.25em for testing in site pages */ /* No parent CSS that can effect the size in the demos ZIP */

	font-family:Verdana, Arial, sans-serif;
	line-height:1.6;
	color: #666;
	position:relative;
}
div.jp-audio {
	width:470px;
	top:10px;
}
div.jp-interface {
	position: relative;
	width:100%;
}

div.jp-audio div.jp-type-single div.jp-interface {
	width:410px;
	height:80px;
	margin:5px auto 0;
}

/* @group CONTROLS */

div.jp-interface ul.jp-controls-left,
div.jp-interface ul.jp-controls-right {
	list-style-type:none;
	margin:0;
	padding: 0;
	overflow:hidden;
	float:left;
}

div.jp-audio ul.jp-controls-left {
	width: 80px;
	margin:10px 5px 0 10px;
}
div.jp-audio ul.jp-controls-right {
	width:70px;
	height:50px;
	margin:20px 0 0 5px;
}

div.jp-interface ul.jp-controls-left li,
div.jp-interface ul.jp-controls-right li {
	display:inline;
	float: left;
}

div.jp-interface ul.jp-controls-left a,
div.jp-interface ul.jp-controls-right a {
	display:block;
	overflow:hidden;
	text-indent:-9999px;
}
a.jp-play,
a.jp-pause {
	width:70px;
	height:70px;
}
a.jp-volume {
	width:65px;
	height:47px;
}

a.jp-play {
	background: url("../img/sprites/jplayer.workers.png") 0 0 no-repeat;
	margin-top:0px;
}
a.jp-play:hover {
	background: url("../img/sprites/jplayer.workers.png") -0px -70px no-repeat;
}
a.jp-pause {
	background: url("../img/sprites/jplayer.workers.png") -70px 0px no-repeat;
	display: none;
}
a.jp-pause:hover {
	background: url("../img/sprites/jplayer.workers.png") -70px -70px no-repeat;
}
a.jp-volume {
	background: url("../img/sprites/jplayer.workers.png") 0 -140px no-repeat;
}
a.jp-volume:hover {

}


/* @end */

/* @group progress bar */

div.jp-progress {
	background-color:#911713;
}
div.jp-audio div.jp-progress {
	width:220px;
	height:15px;
	margin:35px 5px 0px;
	float:left;
}
div.jp-seek-bar {
	background-color:#911713;
	width:0px;
	height:100%;
	cursor: pointer;
}
div.jp-play-bar {
	background-color:#ffed00;
	width:0px;
	height:100%;
	float:left;
}

/* The seeking class is added/removed inside jPlayer */
/*
div.jp-seeking-bg {
	background: url("../img/jplayer.blue.monday.seeking.gif");
}*/

/* @end */

/* @group volume controls */

div.jp-volume-control {
	width:140px;
	height:20px;
	position:absolute;
	top:75px;
	left:265px;
	background-color:#ffed00;
	margin:0;
	padding:0;
	display:none;
	border-radius:3px;
	border:1px solid #ccc;
}

div.jp-volume-bar {
	display:inline-block;
	background-color:#ccc;
	width:100px;
	height:10px;
	cursor: pointer;
	position:absolute;
	top:5px;
	left:5px;
}

div.jp-volume-bar-value {
	background-color: #e73029;
	width:0px;
	height:10px;
}

a.jp-mute,
a.jp-unmute {
	width:20px;
	height:18px;
	display:inline-block;
	position:absolute;
	top:2px;
	left:115px;
	text-indent:-9999px;
}
a.jp-unmute {
	left:115px;
}

a.jp-mute,
a.jp-unmute:hover {
	background: url("../img/sprites/jplayer.workers.png") 0 -187px no-repeat;
}
a.jp-unmute,
a.jp-mute:hover {
	background: url("../img/sprites/jplayer.workers.png") 0px -205px no-repeat;
}

/* @end */


/* @group playlist */

div.jp-title {
	width:396px;
	height:40px;
	padding:5px 30px 8px 20px;
	font-size:14pt;
	line-height:38px;
	color:#e73029;
	background-image:url('../img/media-song-title-bg.png');
	background-repeat:no-repeat;
	position:absolute;
	z-index:3;
	top:-35px;
	left:15px;
	overflow:hidden;
}

div.jp-type-single div.jp-title,
div.jp-type-playlist div.jp-title,
div.jp-type-single div.jp-playlist {
	border-top:none;
}
div.jp-title ul,
div.jp-playlist ul {
	list-style-type:none;
	margin:0;
	padding:0 20px;
	font-size:.72em;
}

div.jp-title li {
	padding:5px 0;
	font-weight:bold;
}
div.jp-playlist li {
	padding:5px 0 4px 20px;
	border-bottom:1px solid #eee;
}

div.jp-playlist li div {
	display:inline;
}

/* Note that the first-child (IE6) and last-child (IE6/7/8) selectors do not work on IE */

div.jp-type-playlist div.jp-playlist li:last-child {
	padding:5px 0 5px 20px;
	border-bottom:none;
}
div.jp-type-playlist div.jp-playlist li.jp-playlist-current {
	list-style-type:square;
	list-style-position:inside;
	padding-left:7px;
}
div.jp-type-playlist div.jp-playlist a {
	color: #333;
	text-decoration: none;
}
div.jp-type-playlist div.jp-playlist a:hover {
	color:#0d88c1;
}
div.jp-type-playlist div.jp-playlist a.jp-playlist-current {
	color:#0d88c1;
}

div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove {
	float:right;
	display:inline;
	text-align:right;
	margin-right:10px;
	font-weight:bold;
	color:#666;
}
div.jp-type-playlist div.jp-playlist a.jp-playlist-item-remove:hover {
	color:#0d88c1;
}
div.jp-type-playlist div.jp-playlist span.jp-free-media {
	float:right;
	display:inline;
	text-align:right;
	margin-right:10px;
}
div.jp-type-playlist div.jp-playlist span.jp-free-media a{
	color:#666;
}
div.jp-type-playlist div.jp-playlist span.jp-free-media a:hover{
	color:#0d88c1;
}
span.jp-artist {
	font-size:.8em;
	color:#666;
}

/* @end */


div.jp-jplayer audio,
div.jp-jplayer {
	width:0px;
	height:0px;
}

div.jp-jplayer {
	background-color: #000000;
}


/* @group NO SOLUTION error feedback */

.jp-no-solution {
	position:absolute;
	width:390px;
	margin-left:-192px;
	left:50%;
	top: 10px;
	display:none;
	padding:5px;
	font-size:.8em;
	color:#000;
}

.jp-no-solution a {
	color:#000;
	text-decoration:underline;
}


/* @end */
