/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable-wrapper { position:relative; clear:both; height:380px; }
.scrollable-wrapper.newsitems,.scrollable-wrapper.slideshow { height:auto; }
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 950px;
	height:360px;

	/* custom decorations */
	/*border:1px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;*/
	margin:0 0 0 10px;
	clear:both;
	
}

.scrollable.newsitems{
	width: 410px;
	height:210px;
}

.scrollable.slideshow{
	width: 195px;
	height:140px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.items {
	/* this cannot be too large */
	width:4000px;
	position:absolute;
	clear:both;
}

/* single scrollable item */
/*.scrollable img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:100px;
	height:75px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}*/

/* active item */
.scrollable .active {
	/*border:2px solid #000;
	z-index:9999;
	position:relative;*/
}



/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(/site/images/scrollable/hori_large2.png) no-repeat;
	display:block;
	width:49px;
	height:49px;
	cursor:pointer;
	font-size:1px;
	position:absolute;
}
.newsitems a.browse { width:103px; height:23px; background:url(/site/images/scrollable/hori_news.gif) no-repeat; }
.slideshow a.browse { width:25px; height:26px; background:url(/site/images/scrollable/hori_small.png) no-repeat; }

/* right */

a.right 				{ right:10px; top:130px; background-position: 0 -49px; z-index:41; }
a.right:hover 		{ background-position:-49px -49px; }
a.right:active 	{ background-position:-98px -49px; } 

.newsitems a.right 				{ right:10px; bottom:0; top:auto; background-position: 0 -23px; z-index:41; }
.newsitems a.right:hover 		{ background-position:-103px -23px; }
.newsitems a.right:active 	{ background-position:-206px -23px; } 

.slideshow a.right 				{ right:6px; bottom:0; top:auto; background-position: 0 -26px; z-index:41; }
.slideshow a.right:hover 		{ background-position:-25px -26px; }
.slideshow a.right:active 	{ background-position:-50px -26px; } 


/* left */
a.left				{ left:5px; top:130px; z-index:42; } 
a.left:hover  		{ background-position:-49px 0; }
a.left:active  	{ background-position:-98px 0; }

.newsitems a.left				{ left:5px; bottom:0; top:auto; z-index:42; } 
.newsitems a.left:hover  		{ background-position:-103px 0; }
.newsitems a.left:active  	{ background-position:-206px 0; }

.slideshow a.left				{ left:0px; bottom:0; top:auto; z-index:42; } 
.slideshow a.left:hover  		{ background-position:-25px 0; }
.slideshow a.left:active  	{ background-position:-50px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(/site/images/scrollable/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


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





/* position and dimensions of the navigator */
.navi {
	float:right;
	margin-right:20px;
	/*width:200px;*/
	height:20px;
}

.navi.newsitems{
	float:none;
	text-align:center;
	margin:0 auto;
	width:100px;
}

.navi.slideshow{
	float:none;
	text-align:center;
	margin:0 auto;
	width:100px;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/site/images/scrollable/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
	text-align:center;
}

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

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

