@charset "utf-8";
/* CSS Document */

#player_container {
	position: relative;
	background-color:#000;
	width:328px;
	height:40px;
	border:1px solid #ca031a;
}
#jquery_jplayer {
	height: 0px;
	width: 330px;
}
#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 {
	display: block;
	position: absolute;
	left:26px;
	top:6px;
	width:16px;
	height:16px;
	cursor: pointer;
}
#player_play {
	background: url("images/play.png") 0 0 no-repeat;
}
#player_play.jqjp_hover {
	background: url("images/play.png") 0 0 no-repeat;
}
#player_pause {
	background: url("images/pause.png") 0 0 no-repeat;
}
#player_pause.jqjp_hover {
	background: url("images/pause.png") 0 0 no-repeat;
}

#ctrl_prev {
	position: absolute;
	left:6px;
	top:6px;
	background: url("images/prev.png") 0 0 no-repeat;
	width:16px;
	height:16px;
	cursor: pointer;
}

#ctrl_prev:hover {
	background: url("images/prev_on.png") 0 0 no-repeat;
}

#ctrl_prev.disabled {
	background: url("images/prev_off.png") 0 0 no-repeat;
	cursor:default;
}

#ctrl_next {
	position: absolute;
	left:46px;
	top:6px;
	background: url("images/next.png") 0 0 no-repeat;
	width:16px;
	height:16px;
	cursor: pointer;
}

#ctrl_next:hover {
	background: url("images/next_on.png") 0 0 no-repeat;
}

#ctrl_next.disabled {
	background: url("images/next_off.png") 0 0 no-repeat;
	cursor:default;
}


#player_stop {
	position: absolute;
	left:66px;
	top:6px;
	background: url("images/stop.png") 0 0 no-repeat;
	width:16px;
	height:16px;
	cursor: pointer;
}
#player_stop.jqjp_hover {
	background: url("images/stop_on.png") 0 0 no-repeat;
}
#player_progress {
	position: absolute;
	left:92px;
	top:11px;
	width:171px;
	height:6px;
}
#player_progress_load_bar {
	background: url("images/bar_load.gif")  top left repeat-x;
	width:0px;
	height:6px;
	cursor: pointer;
}
#player_progress_load_bar.jqjp_buffer {
	background: url("images/bar_buffer.gif")  top left repeat-x;
}
#player_progress_play_bar {
	background: url("images/bar_play.gif") top left repeat-x ;
	width:0px;
	height:6px;
}
#player_volume_min {
	position: absolute;
	left:273px;
	top:9px;
	background: url("images/sound.png") 0 0 no-repeat;
	width:5px;
	height:10px;
	cursor: pointer;
}

#player_volume_max {
	position: absolute;
	left:368px;
	top:32px;
	background: url("images/spirites.jpg") 0 -186px no-repeat;
	width:18px;
	height:15px;
	cursor: pointer;
}

#player_volume_min.jqjp_hover {
	background: url("images/sound.png") 0 0 no-repeat;
}

#player_volume_max.jqjp_hover {
	background: url("images/spirites.jpg") -19px -186px no-repeat;
}

#player_volume_bar {
	position: absolute;
	left:282px;
	top:12px;
	background: url("images/volume_bar.gif") repeat-x top left;
	width:40px;
	height:5px;
	cursor: pointer;
}
#player_volume_bar_value {
	background: url("images/volume_bar_value.gif") repeat-x top left;
	width:0px;
	height:5px;
}

#play_time,
#total_time {
	position: absolute;
	left:92px;
	width:171px;
	top:22px;
	font-weight:normal;
	font-style:oblique;
	font-size:9px;
	font-family: Verdana, Geneva, sans-serif;
	color: #FFF;
}

#total_time {
	text-align: right;
}

#playlist_list {
	width:328px;
}

#playlist_list ul{
	list-style-type:none;
	background-color:#000;
	border:1px solid #ca031a;
	border-top:none;
	width:318px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	font-style: normal;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
	padding-top: 6px;
	padding-right: 5px;
	padding-bottom: 6px;
	padding-left: 5px;
}

#playlist_list li{
	padding:4px 0 4px 20px;
	border:1px solid #000;
	cursor: pointer;
	background-color: #FFF;
}

#playlist_list li.playlist_current{
	color:#ca031a;
	list-style-type:square;
	list-style-position:inside;
	padding-left:6px;
	cursor: default;
}

#playlist_list li.playlist_hover {
	color:#ca031a;
}

.miaow {
	font-size:.8em;
	color:#999;
}




