.audiojs { 
	display: inline-block;
	position: relative;
	width: 100%;
	height: 60px;
	margin-top: 30px;
	background: #FFFFFF;
	overflow: hidden;
	font-size: 12px;
}
.audiojs .play-pause { 
	display: block;
	position: relative;
	width: 40px;
	height: 40px;
	padding: 0px;
	float: left; 
	overflow: hidden;
}
.audiojs .play {
	background: url("btns_playpause.png") 0px 0px no-repeat;
}
.audiojs .pause {
	background: url("btns_playpause.png") 0px -120px no-repeat;
}
.audiojs .loading {
	background: url("btns_playpause.png") 0px -40px no-repeat;
}
.audiojs .error {
	background: url("btns_playpause.png") 0px -80px no-repeat;
}
.audiojs p { 
	width: 40px; 
	height: 40px; 
	margin: 0px;
	display: none;
	cursor: pointer;
}

.audiojs .play-next{
	display: block;
	position: relative;
	cursor: pointer;
	width: 12px;
	height: 15px;
	padding: 0px;
	margin: 12px 0px 0px 20px;
	float: left; 
	overflow: hidden;
	background: url("btns_nextprev.png") 0px 0px no-repeat;
}
.audiojs .play-prev{
	display: block;
	position: relative;
	cursor: pointer;
	width: 12px;
	height: 15px;
	padding: 0px;
	margin: 12px 0px 0px 20px;
	float: left; 
	overflow: hidden;
	background: url("btns_nextprev.png") -12px 0px no-repeat;
}
.audiojs .play-next:hover{
	background: url("btns_nextprev.png") 0px -15px no-repeat;
}
.audiojs .play-prev:hover{
	background: url("btns_nextprev.png") -12px -15px no-repeat;
}

.audiojs .scrubber { 
	position: relative;
	cursor: pointer;
	float: left;
	width: 280px;
	margin: 16px 0 0 20px;
	padding: 0px;
	background: #a3a3a3; 
	height: 8px;
	overflow: hidden;
}
.audiojs .progress { 
	height: 10px; 
	width: 0px; 
	background: #1075cd;
}
.audiojs .loaded {
	height: 10px; 
	background: #c2c2c2;
}
.audiojs .time { 
	display: block;
	position: absolute;
	top: -10px;
	left: 125px;
	width: 280px;
	height: 36px;
	line-height: 36px;
	color: #FFFFFF;
}
.audiojs .time  em{ 
	color: #555555;
}
.audiojs .time  strong{ 
	color: #555555;
	display:block;
	float:right;
}
.audiojs .error-message { 
	height: 24px;line-height: 24px; 
}
.track-details { 
	clear: both; height: 20px; 
	width: 448px; 
	padding: 1px 6px; 
	background: #eee; 
	color: #222; 
	font-family: monospace; 
	font-size: 11px; 
	line-height: 20px;		
}

.player_volumeIcon{
	display: block;
	position: relative;
	cursor: pointer;
	width: 20px;
	height: 18px;
	padding: 0px;
	margin: 12px 0px 0px 20px;
	float: left; 
	overflow: hidden;
	background: url("btns_volume.png") 0px 0px no-repeat;
}
.player_volumeIcon:hover{
	background: url("btns_volume.png") 0px -18px no-repeat;
}
.player_volume{
	position: relative;
	float: left;
	cursor: pointer;
	width: 50px;
	margin: 16px 0 0 10px;
	padding: 0px;
	background: #c2c2c2; 
	height: 8px;
	overflow: hidden;
}
.player_volumeBar{
	height: 10px; 
	width: 100%;
	background: #1075cd;
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#player_name_sound{
	display:block;
	position:absolute;
	top:0px;
	left:540px;
	color:#555555;
	font-size:20px;
	font-weight: bold;
	font-size: 16px;
	height: 20px;
	overflow: hidden;
}
#player_name_autor{
	display:block;
	position:absolute;
	top:20px;
	left:540px;
	color:#1075cd;
}

.track-details:before { content: '♬'; }
.track-details em { font-style: normal; color: #999; }