/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 1000px; 
    height:177px; 
	margin-left: auto;
	margin-right: auto;
} 
 
/* 
    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 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; 
} 
/*div.scrollable div.items a:link{ 
     this cannot be too large 
    outline: none;
} 
 */ 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items a { 
    float:left; 
} 
 
/* you may want to setup some decorations to active the item */ 
/*div.items div.active { 
    border:1px inset #ccc; 
    background-color:#fff; 
}*/

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

/*:focus {
  -moz-outline-style:none;
}
*/



/* single scrollable item */
.scrollable img {
	float:left;
/*	margin:20px 5px 20px 21px;
*/	background-color:#fff;
/*	padding:2px;
*//*	border:1px solid #ccc;
*/	cursor:pointer;
	width:125px;
	height:177px;
	
/*	-moz-border-radius:4px;
	-webkit-border-radius:4px;
*/}

/* active item */
.scrollable .active {
/*	border:2px solid #000;
*/	z-index:9999;
	position:relative;
}



/*http://static.flowplayer.org/tools/css/scrollable-buttons.css*/

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	
	display:block;
	width:24px;
	height:24px;
/*	float:left;
*/	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{
	height: 24px;
	width: 24px;
	top: -39px;
	left: 938px;
/*	clear: right;
*/	background-image: url(../files/pfeil-rechts.png);
	background-repeat: no-repeat;
	position: absolute;
}
/*a.right:hover 		{ background-position:-30px -30px; background:url(../files/pfeil-rechts.png) no-repeat;}
a.right:active 	{ background-position:-60px -30px; background:url(../files/pfeil-rechts.png) no-repeat;} 
*/

/* left */
a.left				{
	left: 38px;
	background:url(../files/pfeil-links.png) no-repeat;
	overflow: hidden;
	position: absolute;
	z-index: 10;
	height: 24px;
	width: 24px;
	top: -39px;
} 
a.left:hover  		{ background-position:-30px 0; background:url(../files/pfeil-links.png) no-repeat;}
a.left:active  	{ background-position:-60px 0; background:url(../files/pfeil-links.png) no-repeat;}




