div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 800px;	 
	height:266px;	
}

/* 
	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:200px;
	height:248px;
	color:#fff;
	position:relative;
}
#thumbs div span a {
	position:absolute;
	bottom:0;
	left:35px;
	display:block;
	font-weight:bold;
	text-transform:uppercase;
	width:102px;
	height:25px;
	background:url(/images/carousel/maincarousel_button.png);
	font-size:11px;
	color:#fff;
	text-decoration:none;
	text-align:center;
	padding:6px 35px 0 0;
}
#thumbs img {
	width:200px;
	height:144px;
	border:0;
}

#thumbs div span {
	display:block;
}


#thumbs h3 { 
	position:absolute;
	margin:0;
	padding:0;
	color:#860038;
	font-size:20px;
	text-transform:uppercase;
	text-align:center;
	top:118px;
	left:0;
	width:200px;
}

#thumbs p {
	margin:25px 0 0 0;
	font-size:12px;
	color:#8f8f8f;	
	text-align:center;
	padding:0 5px;
	display:block;
}
#thumbs h3 em {
	font-style:normal;
	color:yellow;
}
/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:60px;
	height:61px;
	background:url(/images/carousel/maincarousel_next_prev.png) 0 -61px no-repeat;
	float:left;
	margin:43px 9px 0 17px;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {		
}

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

/* next button uses another background image */
a.next, a.nextPage {
	background:url(/images/carousel/maincarousel_next_prev.png) 0 0 no-repeat;
	clear:right;	
	margin:43px 0 0 16px;
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi-text {
	font-size:13px;
	color:#231f20;
	float:left;
	padding:4px 0 0 20px;
}
div.navi {
	text-align:center;
	width:200px;
	float:left;
	margin-left:41px;
	padding-bottom:10px;
}


/* items inside navigator */
div.navi a {
	display:inline-block;
	width:41px;
	height:14px;
	background:url(/images/carousel/maincarousel_navi.gif) 0 -15px no-repeat;     
	cursor:pointer;
	color:#231f20;
	text-decoration:none;
	text-align:center;
	font-size:11px;
	padding:1px 0 0 0;
	margin:0 2px 2px 2px;
}
div.navi a:hover {
	font-weight:bold;
}
/* active state (current page state) */
div.navi a.active {
	background-position:0 0; 
	color:#fff;
} 	