
/* 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:32px;
	height:134px;
	background:url('/images/slider/arrow-left.gif') no-repeat;
	float:left;
	cursor:pointer;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position: 0px -134px;		
}

/* disabled navigational button */
a.disabled,
a.disabled:hover{
	/*visibility:hidden !important;		*/
	background:url('/images/slider/blank-bg.gif') no-repeat top left !important;
	cursor: default !important;
}

.btnContainer {
	background:url('/images/slider/blank.gif') no-repeat;
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url('/images/slider/arrow-right.gif');
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-top: 20px;
	margin-left:328px;
	width:200px;
	height:20px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url('/images/slider/navigator.gif') 0 0 no-repeat;     
	cursor:pointer;	
	overflow: hidden;
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px; 
} 	






/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 636px;	
	height: 132px;	
	
	/* custom decorations */
	border: 1px solid #dddddd;
	
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	width:212px;
	height:132px;
	background:url('/images/slider/items-bg.gif') repeat-x;
	cursor: pointer;
	color: #5F747C;
}
div.scrollable div.items div span {
	padding: 0px 0px 0px 15px;
	font-size: 0.8125em;
	line-height: 28px;
	display: block;
	cursor: pointer;
}
div.scrollable div.items div a {
	color: #5F747C;
	text-decoration: none;
	display: block;
}

/* active item */
div.scrollable div.items div.active a,
div.scrollable div.items div a:hover {
	background:url('/images/slider/items-bg-hover.gif') repeat-x;
	color: #FFFFFF !important;
}
div.scrollable div.items div.active,
div.scrollable div.items div:hover {
	color: #FFFFFF !important;
}


