/**
 * PgwSlideshow - Version 2.0
 *
 * Copyright 2014, Jonathan M. Piat
 * http://pgwjs.com - http://pagawa.com
 *
 * Released under the GNU GPLv3 license - http://opensource.org/licenses/gpl-3.0
 */
.pgwSlideshow {
    width: 100%;
    background: transparent;/*#333*/;
    display: none;
}

.pgwSlideshow a{
    color: #fff;
}

.pgwSlideshow .ps-current {
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 150px;
  /*  box-shadow: 4px 4px 10px #b9b9b9;*/

}

.pgwSlideshow .ps-current > ul  > li {
    text-align: center;
    width: 100%;
    z-index: 1;
    opacity: 0;
    display: block;
  /*  box-shadow: 4px -4px 10px #ccc; */
}

.pgwSlideshow .ps-current > ul  > li img {
    display: block;
    max-width: 100%;
    margin: auto;
}

.pgwSlideshow .ps-caption {
    background: transparent;/*rgba(0, 0, 0, 0.5);*/
    text-align: left;
    font-size: 1rem;
    color: #fff;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 10px;
    display: none;
}

.pgwSlideshow .ps-caption span {
    padding: 7px;
    display: inline-block;
}

.pgwSlideshow .ps-list {
    overflow: hidden;
    position: relative;
    margin-top:25px;
}

.pgwSlideshow .ps-list ul {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    left: 0;
}

.pgwSlideshow .ps-list li {
    float: left;
}

.pgwSlideshow .ps-list li .ps-item {
    display: block;
    margin: 15px 8px;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.pgwSlideshow .ps-list li img {
    display: block;
    border: 1px solid #777;
    width: 100px;
 /*   height: 80px;*/
}

.pgwSlideshow .ps-list li .ps-item.ps-selected {
    float: left;
    opacity: 1;
    overflow: hidden;
}

.pgwSlideshow .ps-list li .ps-item.ps-selected img {
   /* margin: -4px;*/
}

.pgwSlideshow .ps-current .ps-prevIcon {
    border-color:transparent #fff transparent;
    border-style: solid;
    border-width: 10px 10px 10px 0; /*darüber wird der Pfeil gemacht...*/
    display: block;
    display:none;
    
}

.pgwSlideshow .ps-current .ps-nextIcon {
    border-color:transparent #fff transparent;
    border-style: solid;
    border-width: 10px 0 10px 10px; /*darüber wird der Pfeil gemacht...*/
    display: block;
    display:none;
}

.pgwSlideshow .ps-current .ps-prev {
    width:30%;
    height:100%;
    padding-top:30%;
    position:absolute;
    background-color:transparent;
    float:left;
    cursor:pointer;
    background-image: url('../bilder/galerie/pfeil_neg_links_80x55.png');
    background-repeat:no-repeat;
    background-position:10% 50%;
}
.pgwSlideshow .ps-current .ps-prev:hover {
    background-image: url('../bilder/galerie/pfeil_schwarz_links_80x55.png');
}

.pgwSlideshow .ps-current .ps-next {
    width:30%;
    height:100%;
    position:absolute;
    background-color:transparent;
    right:0;
    top:0;
    cursor:pointer;
    background-image: url('../bilder/galerie/pfeil_neg_rechts_80x55.png');
    background-repeat:no-repeat;
    background-position:90% 50%;
}
.pgwSlideshow .ps-current .ps-next:hover {
    background-image: url('../bilder/galerie/pfeil_schwarz_rechts_80x55.png');
}

.pgwSlideshow .ps-list .ps-prev {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 4px 4px 0;
    padding: 8px 15px 8px 12px;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: 1000;
    display: none;
}

.pgwSlideshow .ps-list .ps-next {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px 0 0 4px;
    padding: 8px 12px 8px 15px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 25px;
    z-index: 1000;
    display: none;
}
.pgwSlideshow .ps-list .ps-prevIcon {
    border-color:transparent #fff transparent;
    border-style: solid;
    border-width: 10px 10px 10px 0; /*darüber wird der Pfeil gemacht...*/
    display: block;
}

.pgwSlideshow .ps-list .ps-nextIcon {
    border-color:transparent #fff transparent;
    border-style: solid;
    border-width: 10px 0 10px 10px; /*darüber wird der Pfeil gemacht...*/
    display: block;
}

/*
 * The media-queries are not used because IE8 doesn't support them.
 */
.pgwSlideshow.narrow .ps-list li img {
    width: 60px;
    height: 60px;
}

.pgwSlideshow.narrow .ps-current .ps-prev {
    padding: 15px 15px 15px 12px;
    top: 40%;
}

.pgwSlideshow.narrow .ps-current .ps-next {
    padding: 15px 12px 15px 15px;
    top: 40%;
}

.pgwSlideshow.narrow .ps-list .ps-prev {
    padding: 15px 12px 15px 10px;
    top: 20px;
}

.pgwSlideshow.narrow .ps-list .ps-next {
    padding: 15px 10px 15px 12px;
    top: 20px;
}

.pgwSlideshow.narrow .ps-caption {
    font-size: 0.8rem;
    padding: 8px;
}