@charset "utf-8";
/* CSS Document */

body {
	background: #FFF;
	margin:20px;
}

body,td,th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 67.5%;
	color:#000;
}



#player_container {
	position: relative;
	background: transparent url('../img/bg-01.png') top left repeat;
	width:400px;
	height:67px;
	border:1px solid #000000;
}
#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:42px;
	top:10px;
	width:40px;
	height:40px;
	cursor: pointer;
}
#player_play {
	background: url("../img/jplayer/btn-play.png") 0 0 no-repeat;
}
#player_play.jqjp_hover {
	background: url("../img/jplayer/btn-play.png") -40px 0 no-repeat;
}
#player_pause {
	background: url("../img/jplayer/btn-pause.png") 0 0 no-repeat;
}
#player_pause.jqjp_hover {
	background: url("../img/jplayer/btn-pause.png") -40px 0 no-repeat;
}

#ctrl_prev {
	position: absolute;
	left:14px;
	top:16px;
	background: url("../img/jplayer/btn-back.png") 0 0 no-repeat;
	width:28px;
	height:28px;
	cursor: pointer;
}

#ctrl_prev:hover {
	background: url("../img/jplayer/btn-back.png") -28px 0 no-repeat;
}

#ctrl_prev.disabled {
	background: url("../img/jplayer/btn-back.png") 0 0 no-repeat;
	cursor:default;
}

#ctrl_next {
	position: absolute;
	left:82px;
	top:16px;
	background: url("../img/jplayer/btn-fwd.png") 0 0 no-repeat;
	width:28px;
	height:28px;
	cursor: pointer;
}

#ctrl_next:hover {
	background: url("../img/jplayer/btn-fwd.png") -28px 0 no-repeat;
}

#ctrl_next.disabled {
	background: url("../img/jplayer/btn-fwd.png") 0 0 no-repeat;
	cursor:default;
}


#player_stop {
	position: absolute;
	left:120px;
	top:16px;
	background: url("../img/jplayer/btn-stop.png") 0 0 no-repeat;
	width:28px;
	height:28px;
	cursor: pointer;
}
#player_stop.jqjp_hover {
	background: url("../img/jplayer/btn-stop.png") -28px 0 no-repeat;
}
#player_progress {
	position: absolute;
	left:158px;
	top:22px;
	background-color: #999999;
	width:122px;
	height:15px;
}
#player_progress_load_bar {
	background: url("../img/jplayer/bar_load.gif")  top left repeat-x;
	width:0px;
	height:15px;
	cursor: pointer;
}
#player_progress_load_bar.jqjp_buffer {
	background: url("../img/jplayer/bar_buffer.gif")  top left repeat-x;
}
#player_progress_play_bar {
	background: url("../img/jplayer/bar_play.gif") top left repeat-x  ;
	width:0px;
	height:15px;
}
#player_volume_min {
	position: absolute;
	left:290px;
	top:22px;
	background: url("../img/jplayer/btn-vol-down.png") 0 0 no-repeat;
	width:18px;
	height:15px;
	cursor: pointer;
}

#player_volume_max {
	position: absolute;
	left:362px;
	top:22px;
	background: url("../img/jplayer/btn-vol-up.png") 0 0 no-repeat;
	width:18px;
	height:15px;
	cursor: pointer;
}

#player_volume_min.jqjp_hover {
	background: url("../img/jplayer/btn-vol-down.png") -18px 0 no-repeat;
}

#player_volume_max.jqjp_hover {
	background: url("../img/jplayer/btn-vol-up.png") -18px 0 no-repeat;
}

#player_volume_bar {
	position: absolute;
	left:310px;
	top:27px;
	background: url("../img/jplayer/volume_bar.gif") repeat-x top left;
	width:46px;
	height:5px;
	cursor: pointer;
}
#player_volume_bar_value {
	background: url("../img/jplayer/volume_bar_value.gif") repeat-x top left;
	width:0px;
	height:5px;
}

#play_time,
#total_time {
	position: absolute;
	left:158px;
	top:39px;
	width:122px;
	font-size:.8em;
	font-style:oblique;
}

#total_time {
	text-align: right;
}

#playlist_list {
	width:400px;
	border:1px solid #000;
	border-top:none;

	height:200px;
	overflow-y:scroll;
	overflow-x:hidden;

}

#playlist_list ul{
	list-style-type:none;
	padding:0 0;
	margin:0 0 10px 0;
	background: transparent url('../img/bg-01.png') top left repeat;
	
	width:400px;
	font-size:.9em;
}

#playlist_list li{
	padding:4px 6px;
	/*border-bottom:1px solid #999999;*/
	cursor: pointer;
}

#playlist_list li.playlist_current{
	color:#FFF;
	background-color:#000;
	list-style-type:none;
	list-style-position:inside;
	cursor: default;
}

#playlist_list li.playlist_hover {
	background-color:#999;
	color:#FFF;
}

.miaow {
	font-size:.8em;
	color:#999;
}

.miaow a:link, a:visited, a:hover, a:focus, a:active {
	color:#009be3;
}



#logo {margin:0 0 10px 0;}