/* outmost wrapper element */


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

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

div.play:hover {
	opacity:1.0;		
}

#playlist {
	background-color:white;
	width:100%;
	text-align:left;
}

/* container for the scrollable items */
div.items {
	height:256px;	
	margin-left:8px;	
	float:left;
	width:600px !important;
}


/* single item */
div.items a {
	display:block;
	float:left;
	margin-right:8px;
	width: 192px;
	height:180px;
	font-size:12px;
	color: black;
	text-decoration:none;
	text-align:left;
	cursor:pointer;
}

div.items a:hover {
	color:#009900;	
}

div.items a.active {
	background-position:-256px 0;		
	color:#555;
	cursor:default;
}


/* next / prev buttons */
a.prev, a.next {
	display:block;
	width:30px;
	height:30px;
	float:left;
	background-repeat:no-repeat;	
	margin:15px 0 0 0;
}


a.prev {
	background:url(../images/button-left.gif);		
}

a.prev:hover {
	background:url(../images/button-left-over.gif);		
}

a.next {
	background:url(../images/button-right.gif);		
}

a.next:hover {
	background:url(../images/button-right-over.gif);		
}


/* navigator */
div.navi {
	position:relative;
	top:-30px;
	left:310px;
	margin-left:-50px;
	width:50px;
	height:0px;
}


/* items inside navigator */
div.navi span {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/dots.png) 0 0 no-repeat;     
	cursor:pointer;
}

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

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