
/* player and playlist go side by side */
#player {
	float:left;
	margin-right:5px;
}

a.prev {
	background: url(/video/images/left.png) 0 0 no-repeat;
	margin: 29px 3px 0 2px;
	display: block;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 0;
	left: 0;
}

a.prev:HOVER {
	background: url(/video/images/left.png) 0 -18px no-repeat;
}

a.next {
	background: url(/video/images/right.png) 0 0 no-repeat;
	margin: 29px 2px 0 3px;
	float: left;
	display: block;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 0;
	right: 0;
}

a.next:HOVER {
	background: url(/video/images/right.png) 0 -18px no-repeat;
}

div.playlist {
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;

	background-color:#EFEFEF;
	border:1px solid #DDDDDD;
	float:left;
	width:398px;
	margin: 5px 0 0;
	padding: 5px 25px;
	position: relative;
}

/* player dimensions */
#player, #player img {
	display:block;
	width:450px;
	height:337px;
	border:0px;
}

/* play button on top of splash image */
div.play {
	background:url(/video/images/play.png) no-repeat;
	width:50px;
	height:50px;
	position:relative;
	top:-190px;
	left:205px;
	opacity:0.9;
	margin-bottom:-50px;
}

div.play:hover {
	opacity:1.0;
}

div.items {

	height:68px;
}

/* single playlist item */
div.items a {
	background:url(/video/images/block.jpg) no-repeat;
	width:133px;
	height:68px;
	display: block;
	float: left;
	text-decoration:none;
	color:#444;
}

div.items p {
	font-size:11px;
	width:130px;
	padding:8px 0 0 12px;
	margin:0px;
}

div.items p.time {
	padding-top:0px;
	color:#777;
	margin-top:5px;
}

/* item stages: normal, hover, playing, paused */
div.items a:hover {
	background-position:0 -68px;
}

div.items a.playing, div.items a.paused {
	color:#000;
}

div.items a.playing {
	background-position:0 -136px;
}

div.items a.paused {
	background-position:0 -68px;
}


/* small navigational dots */
div.navi {
	width:400px;
	text-align: center;
}

div.navi span {
	display: -moz-inline-stack;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 3px;
	background:url(/video/images/dots.png) 0px 0px no-repeat;
	cursor:pointer;
}

div.navi span:hover {
	background-position:0 -8px;
}

div.navi span.active {
	background-position:0 -16px;
	cursor:default;
}

