/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 970px;	
	height:317px;	
	
	
	/* custom decorations */
	padding:0px 0;	
	b1order:1px outset #ccc;
	b1ackground-color:#efefef;				
}

/* 
	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 */
	margin-left:0px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:110px;
	padding:0px 0px;
	font-size:30px;
	font-family: 'bitstream vera sans';
	b1order:1px outset #ccc;
	b1ackground-color: #ddd;
	margin-right: 0px;	
	-moz-border-radius:5px;
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}

/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:42px;
	height:30px;
	margin-top:311px;
	margin-left:485px;
	position:absolute;
	background:transparent url(../images/center_navigator.png) repeat-x;
	float:left;
}


/* items inside navigator */
div.navi a {
	width:12px;
	height:12px;
	float:left;
	margin:9px 3px 3px 3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -12px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -24px;     
} 	



/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;	
	margin-top:40px
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:25px;
	height:38px;
	background:url(../images/left.png) no-repeat;
	float:left;
	margin:43px 10px;
	cursor:pointer;
	font-size:1px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -0px;		
}

/* disabled navigational button */
a.disabled {
	v1isibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(../images/right.png);
	clear:right;		
}


a.next{	
	margin-top:175px;
	margin-left:931px;
	position:absolute;
}

a.prev{	
	margin-top:175px;
	position:absolute;
}

.carouselLeftBorder{
	background:transparent url(../images/left-panel.png) no-repeat scroll 0 0;
	width:50px;
	height:317px;
	margin-left:0px;
	float:left;
	position:absolute;
	margin-top:40px
}

.carouselRightBorder{
	background:transparent url(../images/right-panel.png) no-repeat scroll 0 0;
	width:50px;
	height:317px;
	o1pacity:0.4;
	margin-left:922px;
	float:left;
	position:absolute;	
	margin-top:40px	
}

div.leftNavigator{
	width:9px;
	height:30px;
	position:absolute;
	float:left;
	margin-left:476px;
	margin-top:311px;
	background:transparent url(../images/left_navigator.png) no-repeat;	
}

div.rightNavigator{
	width:9px;
	height:30px;
	position:absolute;
	float:left;
	margin-top:311px;
	background:transparent url(../images/right_navigator.png) no-repeat;
	clear:left;	
}

* html div.carouselLeftBorder,
* html div.carouselRightBorder,
* html a.prev,
* html a.prevPage,
* html a.next,
* html a.nextPage,
{
	background:none;
	display:none;
} 



