/**
 * 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%;
    display: none;
    margin-top: 30px;
}

.pgwSlideshow a{
    color: #fff;
}

.pgwSlideshow .ps-current {
    height: 470px !important;
    max-height: 470px !important;
    text-align: center;
    position: relative;
    min-height: 150px;
    overflow: hidden;
    padding: 11px 0 90px;
    border: 1px solid #d6d6d6;
    border-bottom: none;
}
.pgwSlideshow .ps-current > ul {
    padding: 0;
    margin: 0;
}

.pgwSlideshow .ps-current > ul  > li {
    text-align: center;
    width: 100%;
    z-index: 1;
    opacity: 0;
    display: block;
}

.pgwSlideshow .ps-current > ul  > li img {
    display: block;
    max-width: 100%;
    height: 470px !important;
    max-height: 470px !important;
    margin: auto;
}

.pgwSlideshow .ps-caption {
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    text-align: center;
    font-size: 1rem;
    width: 100%;
    height: 80px;
    display: none;
}

.pgwSlideshow .ps-caption span {
    padding: 7px;
    display: inline-block;
}

.pgwSlideshow .ps-list {
    background: #d6d6d6;
    overflow: hidden;
    position: relative;
    padding: 0 10px;
}

.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: 21px 11px;
}

.pgwSlideshow .ps-list li img {
    box-sizing: border-box;
    display: block;
    width: 145px;
    height: 78px;
    border: 3px solid #d6d6d6;
    border-radius: 8px;
}
.pgwSlideshow .ps-list li .ps-item.ps-selected img {
    border: 3px solid #2c9b5a;
}
.pgwSlideshow .ps-list li .ps-item.ps-selected {
    position: relative;
    float: left;
}
.pgwSlideshow .ps-list li .ps-item.ps-selected:before {
    content: "";
    position: absolute;
    top: -21px;
    left: 50%;
    width: 13px;
    height: 13px;
    margin-left: -4px;
    background: url(../images/arrow_bottom_smal.png)no-repeat 50% 50%;
}

.pgwSlideshow .ps-current .ps-prev {
    position: absolute;
    padding: 25px 20px 25px 15px;
    left: 26px;
    top: 41%;
    cursor: pointer;
    background: url("../images/arrow_left.png")no-repeat 50% 50%;
}

.pgwSlideshow .ps-current .ps-next {
    position: absolute;
    padding: 25px 15px 25px 20px;
    right: 26px;
    top: 41%;
    cursor: pointer;
    background: url("../images/arrow_right.png")no-repeat 50% 50%;
}

.pgwSlideshow .ps-list .ps-prev {
    background: url(../images/arrow_left_smal.png)no-repeat 65% 50% #d6d6d6;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    width: 50px;
}

.pgwSlideshow .ps-list .ps-next {
    background: url(../images/arrow_right_small.png)no-repeat 26% 50% #d6d6d6;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    width: 50px;
}

/*
 * 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;
}