@charset "utf-8";
/* CSS Document */

.flashContainer {
	position: relative;
	overflow: hidden;
}
.flashContainer .flashControl {
	display: none;
	position: absolute;
	width: auto;
	height: 24px;
	left: 20px;
	right: 105px;
	bottom: 12px;
	background-color: #CCC;
	overflow: hidden;
	background: url(../images/bg.png) repeat-x;
}
.flashContainer .flashControl .flashPlay {
	float: left;
	display: block;
	height: 24px;
	width: 24px;
	background: url(../images/Player-Play.png) no-repeat center center;
	overflow: hidden;
}
.flashContainer .flashControl .flashPlay:hover {
	background: url(../images/Player-Play-hover.png) no-repeat center center;
}
.flashContainer.playing .flashControl .flashPlay {
	background: url(../images/Player-Pause.png) no-repeat center center;
}	
.flashContainer.playing .flashControl .flashPlay:hover {
	background: url(../images/Player-Pause-hover.png) no-repeat center center;
}	
.flashContainer .flashControl .flashCurrent,
.flashContainer .flashControl .flashDuration {
	float: left;
	height: 24px;
	width: 60px;
	overflow: hidden;
	font-family: "Courier New", Courier, monospace;
	font-size: 11px;
	line-height: 24px;
	padding: 0px 4px;
	text-align: center;
	background: url(../images/border.png) no-repeat right center;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.flashContainer .flashControl .flashDuration {
	float: right;
	background: url(../images/border.png) no-repeat left center;
}
.flashContainer .flashControl .flashProgress {
	height: 22px;
	overflow: hidden;
	cursor: pointer;
	overflow: hidden;
	margin-top: 1px;
}
.flashContainer .flashControl .flashProgress .flashElapsed {
	width: 0;
	height: 100%;
	background-color: #ce2027;
	-moz-opacity: .6;
	filter: alpha(opacity=80);
	opacity: .6;
	border-right: 1px solid #ce2027;
}
.flashContainer .flashControl .flashMute {
	float: right;
	display: block;
	height: 24px;
	width: 24px;
	background: url(../images/Sound-On.png) no-repeat center center;
	overflow: hidden;
}
.flashContainer .flashControl .flashMute:hover {
	background: url(../images/Sound-On-hover.png) no-repeat center center;
}
.flashContainer.muted .flashControl .flashMute {
	background: url(../images/Sound-Off.png) no-repeat center center;
}
.flashContainer.muted .flashControl .flashMute:hover {
	background: url(../images/Sound-Off-hover.png) no-repeat center center;
}
.flashContainer .flashControl .flashClear {
	clear: both;
}
.flashContainer .flashControl .flashVolume {
	float: right;
	height: 20px;
	width: 60px;
	background: url(../images/border.png) no-repeat right center;
	overflow: hidden;
	cursor: pointer;
	padding: 2px;
}
.flashContainer .flashControl .flashVolume .flashCursor {
	float: left;
	height: 20px;
	width: 5px;
	border-right: 1px solid #fff;
	overflow: hidden;
	cursor: pointer;
	background-color:#CCCCCC;
}
.flashContainer .flashControl .flashVolume .flashCursor.selected {
	background-color: #ce2027;
	/*-moz-opacity: .3;
	filter: alpha(opacity=30);
	opacity: .3;*/
}
.flashContainer:hover .flashControl {
	display: block;
}