@charset "utf-8";
/* CSS Document */
.anxSoundPlayer {
	position:relative;
	background:url(/img/player/base.png);
	width:450px;
	height:60px;
	color: #fff;
	font-size:9px;
	overflow:hidden;
	-moz-user-select: none;
	-webkit-user-select: none;
	-webkit-text-size-adjust: 100%;	
	line-height: 1em;
}

/* btnPlay */
.anxSoundPlayer .btnPlay, .anxSoundPlayer .btnPause {
	width:35px;
	height:34px;
	overflow:hidden;
	cursor:pointer;
	position:absolute;
	left:20px;
	top:13px;
    margin:0;
}

.anxSoundPlayer .btnPlay {
	background:url(/img/player/btnPlay.png);
}

.anxSoundPlayer .btnPlay:hover {
	background:url(/img/player/btnPlay.png);
	background-position:0px -34px;
}

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

.anxSoundPlayer .btnPause:hover {
	background:url(/img/player/btnPause.png);
	background-position:0px -34px;
}

/* seek */
.seekBase {
	background:url(/img/player/seekBase.png);
	width:268px;
	height:9px;
	cursor:pointer;
	position:absolute;
	left: 75px;
	top: 38px;
}

.seekProgress {
	background:url(/img/player/seekProgress.png);
	width:268px;
	height:7px;
    margin:0;
}


/* volume */
.volumeBase {
	background:url(/img/player/soundBase.png);
	width:28px;
	height:23px;
	cursor:pointer;
	position:absolute;
	left: 400px;
	top: 10px;
}

.volumeProgress {
	background:url(/img/player/soundProgress.png);
	width:28px;
	height:23px;
    margin:0;
}

/* time */
.timeDisplay {
	position:absolute;
	right: 37px;
	top: 38px;
    width:40px;
}

/* title */
.titleDisplay {
	position:absolute;
	left: 77px;
	top: 16px;
	width: 263px;
	height:12px;
	line-height:12px;
	white-space:nowrap;
	overflow:hidden;
    margin:0;
}

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


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