 /*********************************************************
Gallery
*********************************************************/
/* root element should be positioned relatively so that 
	child elements can be positioned absolutely */
.Gallery .hulu {
	position:absolute;
	height:44px;
	
	/* black background with a gradient */
	background:#000 url(../Flowplayer/img/hulu_new.png) repeat-x 0 -0px;
	width:657px;
}



/* play/pause button */
.Gallery .hulu a.play, div.hulu a.pause { 
	position:absolute;
	width: 46px;
	height: 44px;
	display:block;
	text-indent:-9999em;
	background:url(../Flowplayer/img/hulu_new.png) no-repeat 10px -58px;
	cursor:pointer;
	border-right:1px solid #000; 
}

.Gallery .hulu a.play:hover {
	background-position:10px -99px;	
}

/* pause state */
.Gallery .hulu a.pause { 
	background-position:10px -150px;
}

.Gallery .hulu a.pause:hover {
	background-position:10px -201px;	
}

/* the timeline (or "scrubber")  */
.Gallery .hulu div.track {  
	left:47px;
	position:absolute;
	cursor:pointer;
	width:392px;
	border-left:1px solid #fff;
	height:44px;	
}

/* the draggable playhead */
.Gallery .hulu div.playhead {
	position:absolute;
	cursor:pointer; 
	background-color:#fff;
	opacity:0.3;
	filter: alpha(opacity=30);	
	width:3px;
	height:44px;
	border-right:1px solid #444;
}

/* buffer- and progress bars. upon runtime the width of these elements grows */
.Gallery .hulu div.progress, div.hulu div.buffer {	
	position:absolute;
	background-color:#4ff;
	filter: alpha(opacity=10);
	opacity:0.1;
	width:0px;
	height:44px;
}

.Gallery .hulu div.buffer {
	background-color:#fff;
	opacity:0.1;
	filter: alpha(opacity=10);
}

/* time display */
.Gallery .hulu div.time {
	position:absolute;		
	width:159px;
	left:440px;
	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;*/
	font-weight:normal;
	color:#666;
}

/* total duration in time display */
.Gallery .hulu div.time strong {
	font-weight:bold;
	color:#666;
	
}

/* mute / unmute buttons */
.Gallery .hulu a.mute, div.hulu a.unmute {
	position:absolute;
	left:605px;
	width:50px;
	height:20px;
	text-align:center;
	padding:8px 0;
	cursor:pointer;
	text-indent:-9999em;
	background:url(../Flowplayer/img/hulu_new.png) no-repeat 10px -258px;
}

.Gallery .hulu a.mute:hover {
	/*background-position:10px -376px;	*/
	background-position:10px -294px;
}

/* unmute state */
.Gallery .hulu a.unmute {
	background-position:10px -335px;	
}

.Gallery .hulu a.unmute:hover {
	background-position:10px -376px;	
}

