/*
 * Skin for jPlayer Plugin (jQuery JavaScript Library)
 * http://www.happyworm.com/jquery/jplayer
 *
 * Skin Name: Blue Monday
 *
 * Copyright (c) 2010-2011 Happyworm Ltd
 * Dual licensed under the MIT and GPL licenses.
 *  - http://www.opensource.org/licenses/mit-license.php
 *  - http://www.gnu.org/copyleft/gpl.html
 *
 * Author: Silvia Benvenuti
 * Skin Version: 4.0 (jPlayer 2.1.0)
 * Date: 1st September 2011
 */

div.jp-audio {

	/* Edit the font-size to counteract inherited font sizing.
	 * Eg. 1.25em = 1 / 0.8em
	 */

	font-size:1em; /* 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;
        margin: 0 0 1em 0.8em;
}
div.jp-audio {
	width:260px;
}

div.jp-interface {
	position: relative;
	width:100%;
}

div.jp-audio div.jp-type-single div.jp-interface {
	height:50px;
}
.trackname {font-size:12px; color:#FFFFFF; font-weight:bold; float:left;margin-top:12px;margin-left:60px; position:absolute; z-index:9999;}
div.jp-controls-holder {
	clear: both;
	width:260px;
	margin:0 auto;
	position: relative;
	overflow:hidden;
	top:-8px; /* This negative value depends on the size of the text in jp-currentTime and jp-duration */
}

div.jp-interface ul.jp-controls {
	list-style-type:none;
	margin:0;
	padding: 0;
	overflow:hidden;
}

div.jp-audio ul.jp-controls {
	width: 260px;
	padding:0;
}

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,
a.jp-stop {
	width:45px;
	height:45px;
}

a.jp-play {
	background: url("playbutton.jpg") no-repeat;
}
a.jp-play:hover {
	background: url("playhover.jpg") no-repeat;
}
a.jp-pause {
	background: url("pausebutton.jpg") no-repeat;
	display: none;
}
a.jp-pause:hover {
	background: url("pausehover.jpg") no-repeat;
}

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


/* @end */

/* @group progress bar */

div.jp-progress {
	overflow:hidden;
	background-color: #9C79EF;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-align:center;
}
div.jp-audio div.jp-progress {
	position: absolute;
	top:0px;
	height:45px;
}
div.jp-audio div.jp-type-single div.jp-progress {
	left:50px;
	width:186px;
	
}
div.jp-seek-bar {
	background: url("purplebackground.jpg") repeat-x;
	width:0px;
	height:100%;
	cursor: pointer;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	
}
div.jp-play-bar {
	background: url("purpleplaybar.jpg") repeat-x ;
	width:0px;
	height:100%;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

}

/* @end */

/* @group current time and duration */

div.jp-audio div.jp-time-holder {
	position:absolute;
	top:24px;
}
div.jp-audio div.jp-type-single div.jp-time-holder {
	left:50px;
	width:186px;
}
div.jp-current-time,
div.jp-duration {
	width:60px;
	font-size:.64em;
	font-style:oblique;
}
div.jp-current-time {	
	float: left;
	display:none;
}
div.jp-duration {
	float: right;
	display:none;
	
}

/* @end */