/* these two settings will remove borders from playlist entries */
a:active {  outline:none; }
:focus   { -moz-outline-style:none; }

/* container has a background image */
a.player {	
	margin-top:0px;
	display: block;
	background: #000 url(public/apps/video_player/splash.png) no-repeat;
	width:425px;
	height:298px;
	padding:0;	
	text-align:center;
	color:#fff;
	text-decoration:none;
	cursor:pointer;
}

/* splash image */
a.player img {
	margin-top:115px;
	border:0;	
}

/*{{{ general playlist settings, light gray */

div.playlist {float:left;}

div.playlist, div.clips {width:254px;}

div.clips a {
	display:block;
	padding:12px 15px;
	height:46px;
	width:196px;
	font: 12px Arial, sans-serif;
	margin-bottom: 1px;
	text-decoration:none;
	background: url(/public/apps/video_player/clips-bg.gif) repeat-x;	
	}

div.clips a.first {border-top-width:1px;}

div.clips a.playing, div.clips a.paused, div.clips a.progress {
	background:url(/public/apps/video_player/light.png) no-repeat 0px -68px;
	padding-right:60px;
	border:0;
}
	
div.clips a.progress {
	opacity:0.6;		
		margin-bottom: 1px;
}

div.clips a.paused {
	background-position:0 0;
		margin-bottom: 1px;
}

div.clips a:hover {
	color: #000;
	background: url(/public/apps/video_player/clips-bg-a.gif) repeat-x;	
	margin-bottom: 1px;
}

div.clips a.playing:hover, div.clips a.paused:hover, div.clips a.progress:hover {
	background-color:transparent !important;	
}
/*}}}*/


/*{{{ low version */

div.clips.low a {	
	height:16px;
}

div.clips.low a.playing, div.clips.low a.paused, div.clips.low a.progress {
	background-image:url(/public/apps/video_player/active.png);
	background-position:0 -56px;
}

div.clips.low a.paused {
	background-position:0 0;	
}


/*}}}*/


/*{{{ go buttons */

a.go {
	display:block;
	width:224px;
	height:20px;
	background:url(/public/apps/video_player/up.png) no-repeat;
	margin:3px 0 4px 2px;
	cursor:pointer;
}

a.go:hover, a.go.down:hover {
	background-position:0px -20px;		
}

a.go.down {
	background-image:url(/public/apps/video_player/down.png);	
}


/*}}}*/


