/*
* Fancy Music Player V2.1
* Author: Rafael Dery
* Copyright 2011
*
* Only for the sale at the envato marketplaces
*
*/

.fmp-container {
	position: relative;
	font-size: 10px;
	color: #737373;
	height: 36px;
}

/* Previous button */
.fmp-previous-button {
	width: 9px;
	height: 9px;
	top: 14px;
	margin-right: 3px;
	position: relative;
	float: left;
}

/* Next button */
.fmp-next-button {
	width: 9px;
	height: 9px;
	top: 14px;
	margin-left: 3px;
	position: relative;
	float: left;
}

/* Play/pause button */
.fmp-pp-button {
	width: 9px;
	height: 9px;
	top: 14px;
	position: relative;
	float: left;
}

/* States for hover/active of the previous/next buttons
.fmp-previous-button-normal, .fmp-next-button-normal {
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -95px 0px;
}

.fmp-previous-button-hover, .fmp-next-button-hover {
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -70px 0px;
}

.fmp-previous-button-press, .fmp-next-button-press {
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat 0px -25px;
} */

/* States for hover/active of the play/pause buttons
.fmp-pause-button-normal {
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -60px -25px;
}

.fmp-pause-button-hover {
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -25px -25px;
}

.fmp-play-button-normal {
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -60px -25px;
}

.fmp-play-button-hover {
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -25px -25px;
} */

/* Previous icon */
.fmp-previous {
	width: 9px;
	height: 9px;
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -117px -63px;
}

/* Next icon */
.fmp-next {
	width: 9px;
	height: 9px;
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -102px -63px;
}

/* Play icon */
.fmp-play {
	width: 9px;
	height: 9px;
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -69px -63px;
	position: relative;
}

/* Pause icon */
.fmp-pause {
	width: 9px;
	height: 9px;
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -85px -63px;
	position: relative;
}

.fmp-time-bar {
	width: 120px; /* Change here the width of the time bar */
	height: 5px;
	background: #1a1a1a;
	margin: 12px 0px 0px 10px;
	padding: 3px;
	float: left;
	position: relative;
}

/* The time tooltip */
.fmp-time-bar .fmp-time {
	height: 19px;
	padding: 0px 4px;
	background: #323232;
	border: 1px solid #0d0d0d;
	position: absolute;
	top: -30px;
	line-height: 19px;
	text-align: center;
	color: #a6a6a6;
	font-size: 9px;
	font-weight: bold;

	-webkit-box-shadow: inset 0px -10px 20px -10px #232323, inset 0px 1px 1px 0px #424242;
	-moz-box-shadow: inset 0px -10px 20px -10px #232323, inset 0px 1px 1px 0px #424242;
	box-shadow: inset 0px -10px 20px -10px #232323, inset 0px 1px 1px 0px #424242;
}

/* The arrow border of the time tooltip */
.fmp-time-bar .fmp-time-arrow-border {
	border-color: #0d0d0d transparent transparent;
    border-style: solid;
    border-width: 6px;
    top: 20px;
    height: 0;
    left: 9px;
    position: absolute;
    width: 0;	
}

/* The arrow of the time tooltip */
.fmp-time-bar .fmp-time-arrow {
	border-color: #222222 transparent transparent;
    border-style: solid;
    border-width: 4px;
    top: 20px;
    height: 0;
    left: 11px;
    position: absolute;
    width: 0;	
}

/* Loading bar that shows how much of the mp3 has been loaded */
.fmp-time-bar .fmp-loading-bar {
	height: 6px;
	position: absolute;
	background: #FFF;
	display: none;
}

/* Progress bar that shows the current position of the track */
.fmp-time-bar .fmp-progress-bar {
	height: 6px;
	position: absolute;
	background: #ff9600; /* Old browsers */
}

/* Time Slider to seek to another time range */
.fmp-time-bar .fmp-time-slider {
	width: 18px;
	height: 18px;
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -106px -25px;
	position: absolute;
	top: -2px;
	left: -8px;
	cursor: pointer;
}

/* Sound control holds button and volume slider */
.fmp-sound-control {
	position: relative;
	margin: 11px 0px 0px 10px;
	float: left;
}

/* Volume button */
.fmp-sound-control .fmp-volume-button {
	width: 18px;
	height: 12px;
	background: #323232 url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -16px -58px;
	border: 1px solid #0d0d0d;
	cursor: pointer;

}

/* Volume bar */
.fmp-sound-control .fmp-volume-bar {
	display: none;
	width: 13px;
	height: 50px;
	position: absolute;
	background: #323232;
	border: 1px solid #0d0d0d;
	bottom: 16px;
	left: 3px;

}

/* The arrow border of the volume bar */
.fmp-volume-bar .fmp-volume-arrow-border {
	border-color: transparent transparent #0d0d0d;
    border-style: solid;
    border-width: 4px;
    display: none;
    height: 0;
    left: 3px;
    position: absolute;
    width: 0;	
}

/* The arrow of the volume bar */
.fmp-volume-bar .fmp-volume-arrow {
	border-color: transparent transparent #323232;
    border-style: solid;
    border-width: 2px;
    top: -3px;
    height: 0;
    left: 5px;
    position: absolute;
    width: 0;	
}

/* Volume slider */
.fmp-volume-bar .fmp-volume-slider {
	width: 18px;
	height: 12px;
	position: absolute;
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -0px -60px;
	top: 41px;
	left: -2px;
	cursor: pointer;
}

/* Volume state background */
.fmp-volume-bar .fmp-volume-state-background {
	background: #0d0d0d;
	width: 7px;
	height: 44px;
	margin: 3px;

	-webkit-box-shadow: inset 0px 1px 1px 0px #000,0px 1px 1px 0px #2e2d2d;
	-moz-box-shadow: inset 0px 1px 1px 0px #000,0px 1px 1px 0px #2e2d2d;
	box-shadow: inset 0px 1px 1px 0px #000,0px 1px 1px 0px #2e2d2d;
}

/* Volume state */
.fmp-volume-state-background .fmp-volume-state {
	height: 100%;

	background: #FFF; /* Old browsers */
}

.fmp-tracks-container {
	margin: 8px 0px 0px 5px;
}

/* Playlist button that shows/hides the playlist */
.fmp-tracks-container .fmp-playlist-button {
	width: 16px;
	height: 13px;
	background: #323232 url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -54px 3px;
	border: 1px solid #0d0d0d;
	margin: 0px 10px 10px 0px;
	cursor: pointer;
	float: left;

	display: none;
}

/* Normal status for the playlist icon */
.fmp-button-normal {
	-webkit-box-shadow: 0px 1px 3px 0px #000, inset 0px 1px 1px 0px #5f5f5f;
	-moz-box-shadow: 0px 1px 3px 0px #000, inset 0px 1px 1px 0px #5f5f5f;
	box-shadow: 0px 1px 3px 0px #000, inset 0px 1px 1px 0px #5f5f5f;
}

/* Activate status for the playlist icon */
.fmp-button-active {
	-webkit-box-shadow: inset 0px 1px 1px 0px #000, 0px 0px 0px 0px #313131;
	-moz-box-shadow: inset 0px 1px 1px 0px #000, 0px 0px 0px 0px #313131;
	box-shadow: inset 0px 1px 1px 0px #000, 0px 0px 0px 0px #313131; 
}

/* Current playing title */
.fmp-tracks-container .fmp-current-title {
	line-height: 13px;
	padding: 0 5px 0 0;
	color: #fff;
	font-size: 11px;
	position: absolute;
	top: 12px;
	left: 210px;
	white-space: nowrap;
}

/* Container for the playlist */
.fmp-playlist-container {
	width: 100%;
	display: none;
	margin: 20px 0 0 5px;
}

/* Container for the scrollable area */
.fmp-playlist-scroll {
	width: 95%;
	
	overflow: auto;
	outline: none;
}

/* Playlist */
.fmp-playlist {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	line-height: 24px !important;
}

.fmp-playlist li {
	position: relative;
	margin: 0px 0px 12px;
	list-style-type: none !important;
	list-style: none !important;
	line-height: 16px !important;
}

.fmp-playlist li .fmp-delete-track {
	position: absolute;
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat -12px 0px;
	width: 8px;
	height: 8px;
	top: 4px;
	left: 0;
	cursor: pointer;
}

/* Titles in the playlist */
.fmp-playlist li span {
	display: inline-block;
	width: 80%;
	font-size: 11px;
	cursor: pointer;
	margin-left: 20px;
	line-height: 13px !important;
}

.fmp-playlist li .fmp-track-link {
	position: absolute;
	background: url('../images/fancyMusicPlayer/black/fmp_sprite.png') no-repeat 0px 0px;
	width: 9px;
	height: 9px;
	top: 4px;
	right: 5px;
	cursor: pointer;
}

/* Custom playlists */

div.fmp-xml-playlist h3 {
	margin: 10px 0 5px;
	color: #EEEEEE;
	font-size: 14px;
}

ul.fmp-my-playlist {
	padding: 0;
	margin: 0;	
}

.fmp-my-playlist li a {
	color: #737373;
	font-size: 11px;
}


/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */

.jspContainer
{
	overflow: hidden;
	position: relative;
}

.jspPane
{
	position: absolute;
}

.jspVerticalBar
{
	position: absolute;
	top: 1px;
	right: 0;
	width: 6px;
	height: 100%;
}

.jspHorizontalBar
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
}

.jspVerticalBar *,
.jspHorizontalBar *
{
	margin: 0;
	padding: 0;
}

.jspCap
{
	display: block;
}

.jspHorizontalBar .jspCap
{
	float: left;
}

.jspVerticalBar .jspCap
{
	height: 2px;
}

.jspTrack
{
	background: #1a1a1a;
	border: 1px solid #0d0d0d;
	position: relative;

}

.jspDrag
{
	width: 4px;
	position: relative;
	top: 1px;
	left: 0px;
	cursor: pointer;
	background: #2b2b2b; 

}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag
{
	float: left;
	height: 100%;
}

.jspArrow
{
	background: #50506d;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
}

.jspArrow.jspDisabled
{
	cursor: default;
	background: #80808d;
}

.jspVerticalBar .jspArrow
{
	height: 16px;
}

.jspHorizontalBar .jspArrow
{
	width: 16px;
	float: left;
	height: 100%;
}

.jspVerticalBar .jspArrow:focus
{
	outline: none;
}

.jspCorner
{
	background: #eeeef4;
	float: left;
	height: 100%;
}

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner
{
	margin: 0 -3px 0 0;
}



/* Helper */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }
.clear {clear: both;}

/* IE styles */

.ie8 .fmp-time-bar .fmp-time-arrow-border {
	display: none;	
}

.ie8 .fmp-time-bar .fmp-time-arrow {
	display: none;	
}