
/* container for slides */
.images {
    position:relative;
	height:150px;
	width:460px;
    float:left;
    cursor:pointer;
}

/* single slide */
.images div {
    display:none;
    position:absolute;
    top:0;
    left:0;
    /*padding:9px 28px 9px 28px;*/
}

/* tabs (those little circles below slides) */
.slidetabs {
    clear:both;
	padding-top:15px;
	width:70px;
	margin:auto;
}

.slidetabs_funkt {
    clear:both;
	padding-top:15px;
	width:140px;
	margin:auto;
}

/* single tab */
.slidetabs a, .slidetabs_funkt a {
    width:8px;
    height:8px;
    float:left;
    margin:3px;
    background:url(../img/layout/slider/navigator.png) 0 0 no-repeat;
    display:block;
}

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

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

/* prev and next buttons */
.forward, .backward {
    background:none;
	color:#000;
    display:block;
    width:18px;
    height:36px;
    cursor:pointer;
    font-size:1px;
    text-indent:-9999em;
}

/* next */
.forward {
	position:absolute;
	right:-29px;
	top:118px;
	background-image:url(../img/layout/slider/rechts.png);
	background-repeat:no-repeat;
}

.forward:hover {
	background-image:url(../img/layout/slider/rechts_on.png);
	background-repeat:no-repeat;
}

/* prev */
.backward	{
	position:absolute;
	left:-36px;
	top:118px;
	background-image:url(../img/layout/slider/links.png);
	background-repeat:no-repeat;
}

.backward:hover	{
	background-image:url(../img/layout/slider/links_on.png);
	background-repeat:no-repeat;
}

/* disabled navigational button. is not needed when tabs are
   configured with rotate: true */
.disabled {
    visibility:hidden !important;
}

.lupe {
	position:absolute; 
	right:5px; 
	top:4px; 
	z-index:99;	
}