
/* root element should be positioned relatively so that 
	child elements can be positioned absolutely */
div.FlvPlayerControlsContainer {
	position:relative;
	height:40px;
	
	/* black background with a gradient */
	background:#000 url(/img/player/skin/hulu.png) repeat-x 0 -4px;
	width:500px;
}

/* play/pause button */
div.FlvPlayerControlsContainer a.play, div.FlvPlayerControlsContainer a.pause { 
	position:absolute;
	width: 46px;
	height: 40px;
	display:block;
	text-indent:-9999em;
	background:url(/img/player/skin/hulu.png) no-repeat 10px -61px;
	cursor:pointer;
	border-right:1px solid #000; 
}

div.FlvPlayerControlsContainer a.play:hover {
	background-position:10px -105px;	
}

/* pause state */
div.FlvPlayerControlsContainer a.pause { 
	background-position:11px -148px;
}

div.FlvPlayerControlsContainer a.pause:hover {
	background-position:11px -192px;	
}

/* the timeline (or "scrubber")  */
div.FlvPlayerControlsContainer div.track {  
	left:47px;
	position:absolute;
	cursor:pointer;
	width:285px;
	border-left:1px solid #999;
	height:40px;	
}

/* the draggable playhead */
div.FlvPlayerControlsContainer div.playhead {
	position:absolute;
	cursor:pointer; 
	background-color:#4ff;
	opacity:0.3;
	filter: alpha(opacity=30);	
	width:3px;
	height:40px;
	border-right:1px solid #444;
}

/* buffer- and progress bars. upon runtime the width of these elements grows */
div.FlvPlayerControlsContainer div.progress, div.FlvPlayerControlsContainer div.buffer {	
	position:absolute;
	background-color:#4ff;
	filter: alpha(opacity=10);
	opacity:0.1;
	width:0px;
	height:40px;
}

div.FlvPlayerControlsContainer div.buffer {
	background-color:#fff;
	opacity:0.1;
	filter: alpha(opacity=10);
}

/* time display */
div.FlvPlayerControlsContainer div.time {
	position:absolute;		
	width:129px;
	left:330px;
	padding:12px 0;
	text-align:center;
	border:1px solid #999;
	border-width:0 1px;
	
	font-family:futura,"Lucida Grande","bitstream vera sans","trebuchet ms",verdana,arial;	
	font-size:12px;
	color:#fff; 
}

/* total duration in time display */
div.FlvPlayerControlsContainer div.time strong {
	font-weight:normal;
	color:#666;
}

/* mute / unmute buttons */
div.FlvPlayerControlsContainer a.mute, div.FlvPlayerControlsContainer a.unmute {
	position:absolute;
	left:460px;
	width:40px;
	height:40px;
	text-align:center;
	padding:8px 0;
	cursor:pointer;
	text-indent:-9999em;
	background:url(/img/player/skin/hulu.png) no-repeat 5px -323px;
}

div.FlvPlayerControlsContainer a.mute:hover {
	background-position:5px -367px;	
}

/* unmute state */
div.FlvPlayerControlsContainer a.unmute {
	background-position:5px -235px;	
}

div.FlvPlayerControlsContainer a.unmute:hover {
	background-position:5px -279px;	
}








/* root element should be positioned relatively so that 
	child elements can be positioned absolutely */
div.FlvPlayerControlsContainer { 
	position:relative;
	height:8px;
	margin:12px 0 0;
	padding:5px 0 0;
}

/* when play button toggles between play/pause class 
	we move it's background image */
div.FlvPlayerControlsContainer a.play, div.FlvPlayerControlsContainer a.pause { 
	position:absolute;
	width: 18px;
	height:10px;
	text-indent:-999em;
	cursor:pointer;
	overflow:hidden;
	background:url(/img/controls/play_pause.gif) center top no-repeat;
	margin-top: -10px;	
}

div.FlvPlayerControlsContainer a.pause { 
	background-position:center -10px;
}

/* the track or "scrubber"  */
div.FlvPlayerControlsContainer div.track { 
	position:absolute;
	top:-6px;	
	height:18px;
	left:20px;
	background:url(/img/controls/track.gif) no-repeat;
	text-align:left;
	cursor:pointer;
	width:722px;	
}

/* the draggable playhead */
div.FlvPlayerControlsContainer div.playhead { 
	position:absolute;	
	height:12px;
	background:url(/img/controls/playhead.png) no-repeat;
	cursor:pointer;
	top:0px; 
	width:12px;
}

/* buffer and controls are automatically resized, their initial width should be 0 */
div.FlvPlayerControlsContainer div.progress, div.FlvPlayerControlsContainer div.buffer {	
	background-color:#fff;
	height:6px;
	margin:3px 4px;
	width:0px;
	position:absolute;
	top:0;
	font-size:0px;	
	
	/* this is the way to fine tune buffer and progress max width */
	max-width:712px;
}

div.FlvPlayerControlsContainer div.buffer {
	background-color:#999;
}

/* som proprietary styling for progress bar under mozilla */
div.FlvPlayerControlsContainer div.progress {
	-moz-border-radius-bottomleft:2px;
	-moz-border-radius-topleft:2px;	
}

/* hide time and controls in Apple look */
div.FlvPlayerControlsContainer div.time, div.FlvPlayerControlsContainer a.mute, div.FlvPlayerControlsContainer a.unmute {
	display:none;		
}





