.flashContainer{

	/*	Setting the container to relative positioning
		so we can center the control div */

	position:relative;
	overflow:hidden;
}

.progressBar{
	display:none;
	position:absolute;
	width:auto;
	height:10px;
	left:0px;
	right:90px;
	bottom:0px;
	background-color:#141414;
	overflow:hidden;
	cursor:pointer;

	
}

.progressBar .elapsed{
	position:absolute;
	width:0;
	height:100%;
	background-color:#FC6500;
	left: 0;
}

.controlDiv{
	/* Centering the control div */
	position:absolute;
	width:120px;
	height:120px;
	cursor:pointer;
	top:50%;
	left:50%;
	margin:-60px 0 0 -60px;
}

.controlDiv.play{
	background:url('../images/play.png') no-repeat center center;
}

.controlDiv.replay{
	background:url('../images/replay.png') no-repeat center center;
}

.controlDiv.pause{
	background:url('../images/pause.png') no-repeat -99999px;
}

.flashContainer:hover .controlDiv.pause{
	background-position:center center;
}

/* Only show the progress bar when the video is playing */

.flashContainer.playing:hover .progressBar{
	display:block;
}

.audioControl {
	display: none;
	position: absolute;
	width: 80px;
	height: 40px;
	background-color: #EDEDED;
	right: 0;
	bottom: 0;
	border-left: 5px solid #EDEDED;
	border-right: 5px solid #EDEDED;
}

.flashContainer.playing:hover .audioControl{
	display:block;
}

.audioSpeaker {
	width: 19px;
	height: 15px;
	position: absolute;
	left: 9px;
	top: 13px;
	cursor: pointer;
}

.unmute { background:url('../images/ac_speaker.png') no-repeat center top; }
.mute { background:url('../images/ac_speaker.png') no-repeat center bottom; }

.audioVolumeBar1 {
	position: absolute;
	bottom: 11px;
	left: 40px;
	width: 4px;
	height: 6px;
	background-color: #141414;
	cursor: pointer;
}

.audioVolumeBar2 {
	position: absolute;
	bottom: 11px;
	left: 46px;
	width: 4px;
	height: 9px;
	background-color: #141414;
	cursor: pointer;
}

.audioVolumeBar3 {
	position: absolute;
	bottom: 11px;
	left: 52px;
	width: 4px;
	height: 12px;
	background-color: #141414;
	cursor: pointer;
}

.audioVolumeBar4 {
	position: absolute;
	bottom: 11px;
	left: 58px;
	width: 4px;
	height: 15px;
	background-color: #141414;
	cursor: pointer;
}

.audioVolumeBar5 {
	position: absolute;
	bottom: 11px;
	left: 64px;
	width: 4px;
	height: 18px;
	background-color: #141414;
	cursor: pointer;
}

.volumeBarActive { background-color: #FC6500 !important; }