#player {
	display: none;
}

#player_container {
	position: relative;
	width:453px;
	height:53px;
	margin: 21px 0 10px 0;
}
	#player_container  ul#player_controls {
		list-style-type:none;
		padding:0;
		margin: 0;
	}
		#player_container  ul#player_controls li {
			overflow:hidden;
			text-indent:-9999px;
		}
		
#player_play, #player_pause, #ctrl_prev, #ctrl_next, #player_stop {
	display: block;
	position: absolute;
	width:46px;
	height:43px;
	background-position: 0 0;
	cursor: pointer;
}

#player_play {
	left:162px;
	top:5px;
	background-image: url('../images/jplayer_play.png');
}
	#player_play.jqjp_hover, #player_pause.jqjp_hover, #ctrl_prev:hover, #ctrl_next:hover, #player_stop.jqjp_hover {
		background-position: 0 -43px;
	}
	#player_play.disabled {
		background-position: 0 -86px;
		background-color:gray;
		cursor:default;
	}

#player_pause {
	left:109px;
	top:5px;
	background-image: url('../images/jplayer_pause.png');
}
	#player_pause.disabled {
		background-color:gray;
		cursor:default;
	}

#ctrl_prev {
	left:55px;
	top:5px;
	background-image: url('../images/jplayer_prev.png');
}
	#ctrl_prev.disabled {
		background-color:gray;
		cursor:default;
	}

#ctrl_next {
	right:191px;
	top:5px;
	background-image: url('../images/jplayer_next.png');
}
	#ctrl_next.disabled {
		background-color:gray;
		cursor:default;
	}


#player_stop {
	left:2px;
	top:5px;
	background-image: url('../images/jplayer_stop.png');
}

#currentPlaying {
	position: absolute;
	right: 6px;
	top: 5px;
	width:150px;
	height:25px;
	padding:9px 11px 9px 11px;
	background-image:url('../images/jplayer_display.png');
	
}
	#currentPlaying #text {
		position: relative;
		width: 140px;
		height: 20px;
		overflow: hidden;
		margin: 5px 0 0 6px;
		white-space: nowrap;
	}
	
		#currentPlaying #text p {
			color:#eee;
			font-family:'Times New Roman', Times, serif;
			font-size: 13px;
			letter-spacing:1px;
			padding: 0px;
			margin: 0px;
			display:inline;
			text-transform:uppercase;
		}
