/* ----------------------------------------------------------------------------- *
 *             Beispiel Responsive Slideshow mit responsiveslides.js             *
 * ----------------------------------------------------------------------------- */

.rslides-wrapper {
    position: relative;
}

.rslides {
	font-size: 0.8em;
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    margin: 30px 0 0 0;
	padding: 0;
}

.rslides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
}

.rslides li:first-child {
    position: relative;
    display: block;
    float: left;
}

.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}

.caption {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.4em 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    margin: 0;
    font-size: 0.8em;
    line-height: 1.2em;
}

.caption a:link, .caption a:visited{
    color: #C2D2E5;
}
.caption a:hover, .caption a:active, .caption a:focus {
    color: darkorange;
}

 .rslides_nav:focus {
 outline: none;
 }

.rslides_tabs {
	display: none;
    text-align: center;
    position: absolute;
    top: 0;
    z-index: 2000;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    margin: 0;
    padding: 0;
}

.rslides_tabs li {
    display: inline;
    margin: 0 5px 0 0;
}

.rslides_tabs a {
	/* text-indent: -9999px; */
	font-size: 20px;
    overflow: hidden;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.3);
	border: 1px solid black;
    display: inline-block;
    width: 30px;
    height: 30px;
    z-index: 2005;
}

.rslides_here a {
    background: rgba(240, 240, 255, 1);
    z-index: 2010;
}
/*
 .rslides_nav {
 z-index: 3;
 position: absolute;
 top: 0;
 left: 0;
 display: block;
 width: 50%;
 text-indent: -9999px;
 overflow: hidden;
 height: 90%;
 }
*/
.rslides_nav {
    /*background: url("../graphics/back.svg") no-repeat scroll left 50% white; */ /* das hintergrundbild bewegt sich bein scrollen mit, die 50% sind vertikale ausrichtung */
    /*background-size: contain;
	bottom: 0;
    left: 0;
    opacity: 0.6; */
    overflow: hidden;
    position: absolute;
    text-indent: -9999px;
    top: 0;
    width: 40%; /* darstellung unter 800px bildschirmbreite */
	height: 99%;
    z-index: 100;
}

.rslides_nav.next {
    /*background: url("../graphics/next.svg") no-repeat white;
    background-size: contain;
    background-position: right 50%; */
    left: auto;
    right: 0;
}


/* ----------------------------------------------------------------------------- * 
 *                              800px / 16px/em = 50em                           *
 * ----------------------------------------------------------------------------- */

@media only screen and (min-width: 50em) {
    .rslides {
        box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
    }

    /* Vor-Zurück-Navigation der Slideshow nur bei Hover */
    .rslides_nav {
        opacity: 1;
		width: 40%;
    }

    .rslides_nav:hover {
		/*
        background: url("../graphics/back.svg") no-repeat scroll left 50% red;
		background-size: contain;
        opacity: 0.6;
		*/
		cursor: url("../graphics/back.png"), auto;
    }

    .rslides_nav.next:hover {
		/*
        background: url("../graphics/next.svg") no-repeat blue;
		background-size: contain;
        background-position: right 50%;
		*/
		cursor: url("../graphics/next.png"), auto;
    }
}
