@charset "utf-8";
/* CSS Document */
.anxSoundPlayer {
	position:relative;
	width:272px;
	height:62px;
	color: rgb(0, 0, 0);
	font-size:9px;
	overflow:hidden;
	-moz-user-select: none;
	-webkit-user-select: none;
	-webkit-text-size-adjust: 100%;
	display: block;
	line-height: 1em;
	color:white;
}

/* btnPlay */
.anxSoundPlayer .btnPlay, .anxSoundPlayer .btnPause {
	width:44px;
	height:44px;
	overflow:hidden;
	cursor:pointer;
	position:absolute;
	/*left:19px;*/
	top:0px;
	display:none;
}

.anxSoundPlayer .btnPlay {
	background:url(img/06/btn_play_off.png) no-repeat left top;
	display: block;
}

.anxSoundPlayer .btnPlay:hover {
	background:url(img/06/btn_play_on.png);
}

/* btnPause */
.anxSoundPlayer .btnPause {
	background:url(img/06/btn_pause_off.png);
}

.anxSoundPlayer .btnPause:hover {
	background:url(img/06/btn_pause_on.png);
}

/* seek */
.seekBase {
	background:url(img/06/play_bar1.png);
	width:223px;
	height:22px;
	cursor:pointer;
	position:absolute;
	left: 55px;
	top: 0px;
}

.seekProgress {
	background:url(img/06/play_bar2.png);
	width:223px;
	height:22px;
	display:none;
}


/* volume */
.volumeBase {
	background:url(img/06/volume_bar1.png);
	width:62px;
	height:9px;
	cursor:pointer;
	position:absolute;
	/*left: 246px;*/
	right: 0;
	top: 34px;
}

.volumeProgress {
	background:url(img/06/volume_bar2.png);
	width:62px;
	height:9px;
	display:none;
}

/* time */
.timeDisplay {
	position:absolute;
	left: 55px;
	top: 34px;
    width:60px;

}

/* title */
.titleDisplay {
	position:absolute;
	left: 86px;
	top: 25px;
	width: 215px;
	height:12px;
	line-height:12px;
	white-space:nowrap;
	overflow:hidden;
	display:none;
}

.titleDisplay span {
	display:inline-block;
	position:relative;
	white-space:nowrap;
}

.soundicon{
	position: absolute;
	top: 34px;
	left: 230px;
}


/* do not Change */
.BrightcoveExperience {
	opacity:0;
	position:relative;
}