#audioPlayer
{

}

#audioPlayer .playlistHolder
{
	display: none;
}
/* player holder */

#audioPlayer .playlistName
{
	color: #736357;
	font-size: 14px;
	text-decoration: underline;
	margin-left: 10px;
	margin-right: 10px;
	
}


#audioPlayer .playerHolder{
	/* position:absolute; 
	top:0px;
	left:0px; */
/* width:275px; */
	height:124px;
/*	background-image: url('/img/playerBg.png'); 
background-repeat: repeat-x; */
	position: relative;
width: 275px;
margin: auto;

}

/* player audio name mask for the name scroll function. Set width of the scrolling mask here. Also adjust height if neccesarry. */
#audioPlayer .player_mediaName_Mask{
	position:absolute;
	top:75px;
	left:0px;
	width:100%;

	height:20px;
	overflow:hidden;

	
}
#audioPlayer .player_mediaName_MaskEnd
{
	position:absolute;
	height:20px;
	right:10px;
	width:5px;
	top: 46px;
	background: #000;
}
#audioPlayer .corner
{
	position:absolute;
	background:url('/img/corner.png') no-repeat; width: 18px; overflow:hidden;
	height:20px;
	right:240px;
	top: 46px;
}
#audioPlayer .topCorner
{
	position:absolute;
	background:url('/img/topCorner.png') no-repeat; 
	width: 15px; overflow:hidden;
	height:20px;
	left:90px;
	top: 0px;
}
#audioPlayer .player_mediaName_Mask .trackName
{

	height:20px;
	width:275px;	

		position:absolute;
}

/* player audio name */
#audioPlayer .player_mediaName{
    position: absolute;
  top: -3px;
  white-space: nowrap;
  font-size: 14px;
  color: #e0e0e0;
  font-family: "Exo2Light";
}

/* player audio time */
#audioPlayer .player_mediaTime{
	position:absolute;
	top:10px;
	right:17px;
	
	color:#fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
}

#audioPlayer .player_mediaTime_current{
	position:relative;
	top:0px;
	left:0px;
	float:left;
}

#audioPlayer .player_mediaTime_total{
	position:relative;
	top:0px;
	left:0px;
	float:left;
}

/* player holder for (previous,play/pause,next) buttons */
#audioPlayer .player_controls{
	position:relative;
	top:0px;
	left:8px;
}

/* player previous */
#audioPlayer .controls_prev{
	position:absolute;
	top:20px;
	left:0px;
	width:34px;
	height:20px;
	text-align: center;
}
#audioPlayer img{
	margin-top: 5px;
}
/* player play/pause */
#audioPlayer .controls_toggle{
	position:absolute;
	left:51px;
		top:0px;
	width:56px;
	height:56px;
	text-align: center;
}

#audioPlayer .controls_toggle img
{
	margin-top: 4px;
}

/* player next */
#audioPlayer .controls_next{
	position:absolute;
	top:20px;
	left:124px;
	width:34px;
	height:20px;
	text-align: center;
}

/* player loop */
#audioPlayer .player_loop{
	position:absolute;
	top:0px;
	left:242px;
	width:24px;
	height:21px;
	text-align: center;
}

/* player shuffle */
#audioPlayer .player_shuffle{
	position:absolute;
	top:35px;
	left:242px;
	width:24px;
	height:21px;
	text-align: center;
    display: none;
}
#audioPlayer .player_shuffle img{
	margin-top: 2px;
}
#audioPlayer .player_volume{
	position:absolute;
	top:1px;
	left:242px;
	width:24px;
	height:21px;
	text-align: center;
}

#audioPlayer .player_volume img{
	margin-top: 3px;
}
/* player volume, serves as hit as well */
#audioPlayer .volume_seekbar{
	position:absolute;
	top:25px;
	left:175px;
	/* for hit */
	width:50px;
	height:20px;
	/*background:green;*/
}

#audioPlayer .volume_bg{
	position:absolute;
	top:0px;
	width:50px;
	height:20px;
	background: url("img/player/volumeBgPng.png") repeat scroll 0 0 rgba(0, 0, 0, 0);
}

#audioPlayer .volume_level{
	background: url("img/player/volumeBgActivePng.png") repeat scroll 0 0 rgba(0, 0, 0, 0);
    height: 20px;
    position: absolute;
    top: 0;
width: 50px;
}

#audioPlayer .player_volume_tooltip{
	position:absolute;
	top:10px;
	/* left is set in code */
	width:35px;/* width is not automatically set so adjust it yourself if you change font or font size */
	height:16px;
	background:#333;
	display:none;
	text-align:center;
	
	-moz-box-shadow: 1px 1px 1px #222;
	-webkit-box-shadow: 1px 1px 1px #222;
	box-shadow: 1px 1px 1px #222;
		z-index:100;

}

#audioPlayer .player_volume_tooltip p {
    font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	color:#ffffff;
	margin:0;
	line-height:18px;
		z-index:100;

}

/* player progress, serves as hit as well */
#audioPlayer .player_progress{
	position:absolute;
	left:0px;
	top: 92px;
	/* for hit */
	width:275px;
	height:16px;	/*background:green;*/
}

#audioPlayer .progress_bg{
	position:absolute;
	top:5px;
	width:275px;
	height:9px;
background: url(img/player/trackBg.png) no-repeat;
}

#audioPlayer .load_progress{
	position:absolute;
	top:6px;
	width:0px;
	height:7px;
	border-radius: 50px;
	/*background:#444444;*/
}

#audioPlayer .play_progress{
	position:absolute;
	top:5px;
	width:0px;
	height:6px;
	background:#F57900;
	border-radius: 50px;
}

#audioPlayer .player_progress_tooltip{
	position:absolute;
	top:40px;
	/* left is set in code */
	width:70px;/* width is not automatically set so adjust it yourself if you change font or font size */
	height:16px;
	background:#333;
	display:none;
	text-align:center;
	
	-moz-box-shadow: 1px 1px 1px #222;
	-webkit-box-shadow: 1px 1px 1px #222;
	box-shadow: 1px 1px 1px #222;
		z-index:100;

}

#audioPlayer .player_progress_tooltip p {
    font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	color:#ffffff;
	margin:0;
	line-height:18px;
}


#audioPlayer .soundCloudLogo {
    height: 56px;
    left: 283px;
    position: absolute;
    top: 0px;
    width: 56px;
}
