/* this makes it possible to add next button beside scrollable */
.main_marquee
{
	width: 585px;
	float: left;
	height: 215px;
	background-color: #FFFFFF;
	margin-bottom: 10px;
}

.content_marquee
{
	width: 585px;
	float: left;
}

/* position and dimensions of the navigator */
.navi {
	width:585px;
	float: none;
	clear: both;
    -moz-border-radius-bottomleft: 6px;
    -moz-border-radius-bottomright: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -webkit-border-bottom-right-radius: 6px;
	background-color: #fbe798;
	height: 30px;	
}


/* items inside navigator */
.navi a {

	width:8px;
	height:8px;
	float:left;
	margin:3px;
	margin-top: 8px;
	margin-left: 8px;	
	background:url(../images/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
} 	


/* root element for the whole scrollable setup */
.content_marquee {  
	position:relative;
	overflow: hidden;
	width: 585px;	 
	height:215px;	
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:118px;	
}
/* single item */
#thumbs div 
{
	float:left;
	width:585px;
	height:216px;
}













/* root element for the whole video setup */
.videos 
{  
	float: left;
	position:relative;
	overflow:hidden;
	width: 510px;	 
	height:190px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#video_list
{	
	position:absolute;
	width:20000em;	
	clear:both;
}

/* custom positioning for navigational links */
a.prev, a.next 
{
	margin-top:275px;	
}


/* single item */
.video_list_box 
{
	float:left;
	width:170px;
	height:200px;
	color:#fff;
}



.video_display h3, .video_display p, .video_display span 
{
	margin:10px;		
	font-size:12px;
	color:#000000;	
	margin:0px;
	padding:0px;
	text-align:center;
}

.video_display
{
	padding: 8px;
}

a.prev, a.next, a.prevPage, a.nextPage 
{
	display:block;
	width:18px;
	height:18px;
	background:url('../images/left.png') no-repeat;
	float:left;
	margin:80px 5px;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover 
{
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled 
{
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage 
{
	background-image:url('../images/right.png');
	clear:right;	
}



