/* root element for the scrollable. when scrolling occurs this element stays still. */ 
#fotoshow { 
	display: none;
    position: absolute; 
	top: 188px;
	left: 0;
    overflow: hidden; 
    width: 100%; 
	height : 82px;
	background-color: black;
	border-bottom: 1px solid #fffdca;
	z-index: 100;
} 
 
/* 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. */ 
#fotoshow div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute;
} 
 
/*  a single item. must be floated in horizontal scrolling. typically, this element is the one that *you* will style the most. */ 
#fotoshow div.items a { 
    float:left; 
	padding: 0px 1px;
} 

#button img {
	vertical-align: middle;
}

#button {
	display: none;
	position: absolute;
	float: right;
	top: 188px;
	right: 36px;
	height: 20px;
	width: 230px;
	background: black url(../images/nav_gezeigt2.png) no-repeat top left;
	font-size: 0.7em;
	z-index: 60;
}

/* Änderungen wenn die Fotoshow Bar da ist */

#button.fotoshow,
#rechts.fotoshow,
#rechts2.fotoshow
 {
	top: 271px;
}