
#player_container {
	position: relative;
	background-color:#eee;
    border:1px solid #888;
 	width:418px;
	height:40px;
}
#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_next,
#ctrl_prev,
#player_stop,
#player_volume_min,
#player_volume_max {
	display: block;
	position: absolute;
	top:12px;
	width:16px;
	height:16px;
	cursor: pointer;
    background:transparent url(/images/jplayer/sound_icons.png) no-repeat scroll 0 0;
}


#player_play { left:40px; }
#player_play.jqjp_hover { left:40px; background-position:0px -17px; }

#player_pause { left:40px; background-position:-17px 0px; }
#player_pause.jqjp_hover { left:40px; background-position:-17px -17px; }

#player_stop { left:85px; background-position:-34px 0px; }
#player_stop.jqjp_hover { left:85px; background-position:-34px -17px; }

#ctrl_prev { left:20px; background-position:-51px 0px; }
#ctrl_prev:hover { left:20px; background-position:-51px -17px; }

#ctrl_next { left:60px; background-position:-68px 0px; }
#ctrl_next:hover { left:60px; background-position:-68px -17px; }

#player_volume_min { left:310px; background-position:-85px 0px; }
#player_volume_max { left:380px; background-position:-102px 0px; }



#player_progress {
	position: absolute;
	left:140px;
	top:12px;
	border:1px solid #ccc;
	background-color: #eee;
	width:122px;
	height:15px;
}
#player_progress_load_bar {
	background: #ccc;
	width:0px;
	height:15px;
	cursor: pointer;
}
#player_progress_load_bar.jqjp_buffer {
  background:#ccc;
}
#player_progress_play_bar {
	background:#001937;
	width:0px;
	height:15px;
}
#player_volume_bar {
	position: absolute;
	left:325px;
	top:17px;
    background:#ccc;
	width:46px;
	height:5px;
	cursor: pointer;
}
#player_volume_bar_value {
	background:#001937;
	width:0px;
	height:5px;
}

#play_time,
#total_time {
	position: absolute;
	left:110px;
	top:14px;
	width:182px;
	font-size:.8em;
	font-style:oblique;
}

#total_time {
	text-align: right;
}

/* style tracks */

.audio_track {
  list-style-type:none;
  padding:7px 0px;
  margin:0px;
}
.selectable_track {
  cursor:pointer;
}

.selectable_track:hover {
  background:#f3f3f3;
  border-top:1px solid #e3e3e3;
  border-bottom:1px solid #e3e3e3;
  padding:6px 0px;
}

.active_track, .active_track:hover {
  list-style-type:square;
  list-style-position:inside;
  background:#b4bfcf;
  border-top:1px solid #001937;
  border-bottom:1px solid #001937;
  padding:6px 0px 6px 6px;
}

#list_container {
  width:418px;
  padding:0px;
  margin:0px;
}

#list_container ul {
  padding:0px;
  margin:0px;
}


.single_track {
  width:418px;
  text-align:left;
  background:#ddd;
}

.view_all {
  float:right;
}
