@charset "utf-8";
/* CSS Document */

.anxMoviePlayer {
	background:none;
	width:640px;
	height:408px;
	position:relative;
}


/* display */
.anxMovieExperience {
	width:640px;
	height:360px;
	position:absolute;
	left:0px;
	top:0px;
}

/* play pause */
.mvBtnPlay, .mvBtnPause {
	width:38px;
	height:38px;
	cursor:pointer;
	position:absolute;
	left:59px;
	top:370px;
}

.mvBtnPlay {
	background:url(/common/img/player/btn_play.png);
}

.mvBtnPause {
	display:none;
}

.mvBtnPause {
	background:url(/common/img/player/btn_pause.png);
}

.mvBtnPlay:hover {
	opacity: 0.75;
	-moz-opacity: 0.75;
	filter: alpha(opacity=75);
	
}

.mvBtnPause:hover {
	opacity: 0.75;
	-moz-opacity: 0.75;
	filter: alpha(opacity=75);
}


/* seek */
.mvSeekBase {
	background:url(/common/img/player/seekBase.png);
	width:370px;
	height:20px;
	position:absolute;
	left:131px;
	top:379px;
	cursor:pointer;
}

.mvSeekProgress {
	background:url(/common/img/player/seekProgress.png);
	width:370px;
	height:20px;
}

/* time */
.mvTimeDisplay {
	display:none;
}


/* volume */
.mvVolUnMute {
	display:none;
}

.mvVolMute, .mvVolUnMute {
	cursor:pointer;
	width:29px;
	height:22px;
	position:absolute;
	left:536px;
	top:378px;
}

.mvVolMute {
	background:url(/common/img/player/volume_off.png);
}

.mvVolMute:hover {
	opacity: 0.75;
	-moz-opacity: 0.75;
	filter: alpha(opacity=75);
}

.mvVolUnMute {
	background:url(/common/img/player/volume_on.png);
}

.mvVolUnMute:hover {
	opacity: 0.75;
	-moz-opacity: 0.75;
	filter: alpha(opacity=75);
}

