
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 950px;
	height:280px;
	/* custom decorations */
	border:0px solid #ccc;
	/*background:url(../../images/frontend/scrollable/h300.png) repeat-x;*/
	background:none !important;
	z-index:1;
}

/*
	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.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	z-index:2;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0px 0px 0px 0px;
	background:none !important;
	padding:0px;
	border:0px solid #fff;
	cursor:pointer;
	width:950px;
	height:280px;
	z-index:3;
}

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

/* NAVI */

/* position and dimensions of the navigator */ 
.navi { 
		margin-right:50px;
		margin-top:5px;
		margin-left:870px;
    width:80px; 
    height:20px; 
    z-index:4;
} 
 
 

.navi a { 
    width:8px; 
    height:8px; 
    float:left; 
    margin:3px; 
    background:url(../../images/frontend/scrollable/navigator.png) 0 0 no-repeat; 
    display:block; 
    font-size:1px; 
    z-index:4;
} 
 

.navi a:hover { 
    background-position:0 -8px;       
} 
 

.navi a.active { 
    background-position:0 -16px;      
}

