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:'Roboto Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	line-height:1.6;

	border:1px solid #191919;
	background-color:#fff;
}



div.jp-interface {
	background-color:#fff;
	width:100%;
}

.mutePosition {
	position:relative;
	top:4px;
	left:8px;
	color:#c06014;
	}


/* @group CONTROLS */

.jp-controls {
	height:40px;
	width:98px;
	margin:0 auto 0 auto;
	padding:0;
	-webkit-padding-start: 0!important;
}

div.jp-interface ul.jp-controls li {
	display:inline;
	float:left;
}

div.jp-interface ul.jp-controls a {
	display:block;
	overflow:hidden;
	text-indent:-9999px;
}
a.jp-play,
a.jp-pause {
	width:40px;
	height:40px;
	margin-bottom:16px;
	margin-top:13px;
	margin-left:2px;
}

a.jp-play {
	background: url("jplayer.blue.monday.jpg") 0 0 no-repeat;
}
a.jp-play:hover {
	background: url("jplayer.blue.monday.jpg") -41px 0 no-repeat;
}
a.jp-pause {
	background: url("jplayer.blue.monday.jpg") 0 -42px no-repeat;
	display: none;
}
a.jp-pause:hover {
	background: url("jplayer.blue.monday.jpg") -41px -42px no-repeat;
}

a.jp-stop, a.jp-previous {
	width:28px;
	height:28px;
	margin-top:20px;
	margin-left:0px;
}

a.jp-next {
	width:28px;
	height:28px;
	margin-top:20px;
	margin-left:0px;
}




a.jp-previous {
	background: url("jplayer.blue.monday.jpg") 0 -112px no-repeat;
}
a.jp-previous:hover {
	background: url("jplayer.blue.monday.jpg") -29px -112px no-repeat;
}

a.jp-next {
	background: url("jplayer.blue.monday.jpg") 0 -141px no-repeat;
}
a.jp-next:hover {
	background: url("jplayer.blue.monday.jpg") -29px -141px no-repeat;
}

/* @end */

/* @group progress bar */

div.jp-progress {
	margin-top:15px;
	overflow:hidden;
	background-color: #ddd;
}
div.jp-audio div.jp-progress {
	height:3px;
	width:100%;
}


div.jp-seek-bar {
	background: url("jplayer.blue.monday.jpg") 0 -212px repeat-x;
	width:0px;
	height:100%;
	cursor: pointer;
}
div.jp-play-bar {
	background: url("jplayer.blue.monday.jpg") 0 -228px repeat-x ;
	width:0px;
	height:100%;
}

/* The seeking class is added/removed inside jPlayer */
div.jp-seeking-bg {
	background: url("jplayer.blue.monday.seeking.gif");
}

/* @end */

/* @group volume controls */


a.jp-mute,
a.jp-unmute,
a.jp-volume-max {
width:18px;
height:15px;	
}

a.jp-mute {
	background: url("jplayer.blue.monday.jpg") 0 -170px no-repeat;
	margin-left:5px;
	margin-top:8px;
}
a.jp-volume-max {
	background: url("jplayer.blue.monday.jpg") 0 -186px no-repeat;
	margin-top:8px;
}

div.jp-volume-bar {
	background: url("jplayer.blue.monday.jpg") 0 -250px repeat-x;
	width:80px;
	height:5px;
	cursor: pointer;
	margin-left:8px;
}

div.jp-volume-bar-value {
	background: url("jplayer.blue.monday.jpg") 0 -256px repeat-x;
	width:0px;
	height:5px;
}

/* @end */

/* @group current time and duration */

div.jp-audio div.jp-time-holder {

}
div.jp-audio div.jp-type-single div.jp-time-holder {

	width:100%;
}
div.jp-audio div.jp-type-playlist div.jp-time-holder {
	left:0;
	width:100%;
}

div.jp-current-time,
div.jp-duration {
	width:60px;
	font-size:.64em;
	color:#000;
}
div.jp-current-time {
	float: left;
	display:inline;
}
div.jp-duration {
	float: right;
	display:inline;
	text-align: right;
}

div.jp-video div.jp-current-time {
	margin-left:20px;
}
div.jp-video div.jp-duration {
	margin-right:20px;
}

/* @end */

/* @group playlist */

div.jp-details {
	font-weight:bold;
	text-align:center;
}

div.jp-details,
div.jp-playlist {
	max-height:287px; 
	overflow-y: auto;
	overflow-x: hidden;
	width:100%;
	background-color:#eee;
	
}
div.jp-details ul,
div.jp-playlist ul {
	list-style-type:none;
	margin:0;
	padding:0 5px;
	font-size:16px;
}

div.jp-details li {
	padding:5px 0;
	font-weight:bold;
}
div.jp-playlist li {
	padding:5px 0 5px 25px;
	border-bottom:#fff;
	border-bottom-style:solid;
	border-width:1px;
}

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 a {
	color: #333;
	text-decoration: none;
}
div.jp-type-playlist div.jp-playlist a:hover {
	color:#c06014;
}
div.jp-type-playlist div.jp-playlist a.jp-playlist-current {
	color:#c06014;
}

div.jp-type-playlist div.jp-playlist a.jp-playlist-current:hover {
	color:#c06014;
}

div.jp-type-playlist div.jp-playlist a.jp-playlist-current:active {
	color:#c06014;
}

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:#c06014;
}

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:#c06014;
}

/* @group NO SOLUTION error feedback */

.jp-no-solution {
	padding:5px;
	font-size:.8em;
	background-color:#eee;
	border:2px solid #c06014;
	color:#000;
	display:none;
}

.jp-no-solution a {
	color:#000;
}

.jp-no-solution span {
	font-size:1em;
	display:block;
	text-align:center;
	font-weight:bold;
}

/* @end */
