
/* root element should be positioned relatively so that 
	child elements can be positioned absolutely */
div.hulu {
	position:relative;
	height:30px;
	z-index: 1000;
	/* black background with a gradient */
	/*background:#000 url(/img/player/hulu.png) repeat-x 0 -4px;*/
	background: url(/img/player/progress_bg.png) no-repeat;
	width:461px;
	/*opacity:0.8; filter:alpha(opacity=80);*/
	bottom: 40px;
	z-index: 100;
	margin-bottom: -40px;
	margin-top: 15px;
}

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

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

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

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

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

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

/* buffer- and progress bars. upon runtime the width of these elements grows */
div.hulu div.progress, div.hulu div.buffer {	
	position:absolute;
	background-color:#13a9ff;
	/*filter: alpha(opacity=0);*/
	/*opacity:0.1;*/
	width:0px;
	height:1px;
	margin-top: 14px;
	font-size: 0px;
	line-height: 0px;
	overflow: hidden;
}

div.hulu div.buffer {
	background-color: #ff03bb;
	/*opacity:0.1;*/
	/*filter: alpha(opacity=0);*/
}

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

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

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

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

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

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

