/* === GENERAL STYLES === */

body {
	background: url(../../images/yelgrnmarble.jpg);
}

/* === STYLES FOR CONTROLS OF THE AUDIO PLAYER === */

.jp-controls a {
	display: block;
	overflow: hidden;
	text-indent: -9999px;
}
.jp-interface ul {
	list-style: none;
	float: left;
	list-style: none outside none;
	margin: 0;
}
.jp-interface ul li {
	list-style-type: none;
	display: inline;
	float: left;
}
.jp-interface .jp-play {
	background: url(../img/playButton.png) no-repeat;
	width: 32px;
	height: 32px;
}
.jp-interface .jp-pause {
	background: url(../img/pauseButton.png) no-repeat;
	width: 32px;
	height: 32px;
}
.jp-interface .jp-next {
	background: url(../img/nextButton.png) no-repeat;
	width: 24px;
	height: 24px;
	margin: 4px 0 0 0;
}
.jp-interface .jp-previous {
	background: url(../img/backButton.png) no-repeat;
	width: 24px;
	height: 24px;
	margin: 4px 0 0 0;
}
div.jp-interface {	
	height: 30px;
	position: relative;
	z-index: 10;
}
div.list-button-container {
	float: left;
}
div.list-button-container .jp-list-toggle {
	background: url("../img/listButtonIcon.png") no-repeat scroll 0 0 transparent;
	display: block;
	height: 16px;
	margin: 8px 0 0 5px;
	overflow: hidden;
	text-indent: -9999px;
	width: 16px;
}
/* @group progress bar */

div.jp-progress {
	overflow: hidden;
	background-color: #ddd;
}
div.jp-audio div.jp-progress {
	background: none repeat scroll 0 0 #000000;
	border: 1px solid #505050;
	border-radius: 3px 3px 3px 3px;
	float: left;
	height: 19px;
	margin: 7px 0 0 10px;
	padding: 3px;
	position: relative;
	width: 109px;
}
div.jp-seek-bar {
	width: 0px;
	height: 100%;
	width: 100%;
	cursor: pointer;
	background: #454545;
	border-radius: 2px;
}
div.jp-play-bar {
	background: none repeat scroll 0 0 #62A5E3;
	border-radius: 2px 2px 2px 2px;
	box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.6) inset;
	color: #D4D4D4;
	height: 9px;
}
/* The seeking class is added/removed inside jPlayer */
div.jp-seeking-bg {
	background: url("jplayer.blue.monday.seeking.gif");
}
div.volumeController {
	background: url("../img/speakerIcon.png") no-repeat scroll 8px 4px transparent;
	border-left: 1px dotted #606060;
	float: left;
	height: 18px;
	margin: 4px 0 0 12px;
	padding: 4px 0 2px 20px;
}
.jp-volume-bar {
	background: none repeat scroll 0 0 #000000;
	border: 1px solid #505050;
	border-radius: 3px 3px 3px 3px;
	height: 19px;
	margin-left: 5px;
	padding: 2px;
	width: 28px;
}
.jp-volume-bar-value {
	background-color: #a0a0a0;
	height: 100%;
	border-radius: 1px;
}


/* === STYLES FOR PLAYLIST === */
.jp-audio{
	margin:0;
}

.jp-playlist {
	margin: 10px 0 0;
	position: relative;
	z-index: 1;
}
.jp-playlist ul {
	
	background: none repeat scroll 0 0 #222222;
	background: #222222;
	background: -webkit-gradient(linear, left top, left bottom, from(#373737), to(#222222));
	background: -moz-linear-gradient(#373737, #222222);
	background: -webkit-linear-gradient(#373737, #222222);
	background: linear-gradient(#373737, #222222);
	
    border: 1px solid #272727;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4), 3px 3px 3px rgba(0, 0, 0, 0.3) inset;
    list-style: none outside none;
    /*If many songs are added then we display a scroll bar*/
    max-height: 400px;
    overflow: auto;
	overflow-x: hidden !important;
	overflow-y: scroll !important;
    padding: 5px 10px;
	
    
}
.jp-playlist ul li {
	font-family: Helvetica, Arial, sans-serif;
	list-style: none;
	padding: 5px 0 5px 25px;
	border-bottom: 1px solid #111;
	border-top: 1px solid #454545;
}
.jp-playlist ul li:last-child {
	border-bottom: none;
	padding-bottom:3px;
}
.jp-playlist ul li:first-child {
	border-top: none;
}
.jp-playlist ul li a {
	color: #797979;
	text-shadow: rgba(0,0,0,.5);
}
.jp-playlist ul li a:hover {
	color: #bababa;
}
.jp-playlist ul li.jp-playlist-current {
	background: url(../img/nowPlaying.png) 0 7px no-repeat;
}
.jp-playlist ul li.jp-playlist-current a {
	color: #ccc;
	text-shadow: 0 0 2px rgba(255,255,255,0.4);
}
.jp-playlist-item-remove {
	float: right;
	margin-top:4px;
}
.jp-playlist-buy, .jp-free-media {
	float: right;
	margin-top:2px;
}
.jp-playlist-item-free {
	background: url(../img/downloadIcon.png) 0 1px no-repeat;
	display: block;
	margin-right: 7px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	text-indent: -9999px;
}
.jp-playlist-item-buy {
	background: url(../img/musicIcon.png) 0 1px no-repeat;
	display: block;
	margin-right: 7px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	text-indent: -9999px;
}


