/**
 * 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
 */
*{  transition: none !important;}
.pgwSlideshow {
	letter-spacing: 0px;
    width: 100%;
    background: #333;
    display: none;
  
}

.pgwSlideshow a{
    color: #fff;
}

.pgwSlideshow .ps-current {
    text-align: center;
    position: relative;
    min-height: 150px;
    overflow: hidden;
}

.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;
    width: 100%;
    margin: auto;
}

.pgwSlideshow .ps-caption {
    background: rgba(0, 0, 0, 0.5);
    filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#99000000', endColorstr='#99000000');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#99000000', endColorstr='#99000000')";
    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 {
    border-top: 1px solid #555;
    background: #000;
    overflow: hidden;
    position: relative;
}

.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: 1;
    filter: alpha(opacity=100);
}

.pgwSlideshow .ps-list li img {
    display: block;
    border: 1px solid #777;
    width: 230px;
    height: 128px;
}

.pgwSlideshow .ps-list li .ps-item.ps-selected {
    float: left;
    opacity: 1;
    border: 4px solid #fff;
    overflow: hidden;
}

.pgwSlideshow .ps-list li .ps-item.ps-selected img {
    margin: -4px;
    transition: none !important;
}

.pgwSlideshow .ps-prevIcon {
    border-color:transparent #fff transparent;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    display: none;
}

.pgwSlideshow .ps-nextIcon {
    border-color:transparent #fff transparent;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    display: none;
}

.pgwSlideshow .ps-current .ps-prev {
    background: url(../img/arrleft.png) no-repeat;
   
    border-left: 0;
    border-radius: 0 4px 4px 0;
    position: absolute;
    width: 64px;
    height: 64px;
    left: 0;
    top: 45%;
    cursor: pointer;
    display: block !important;
    opacity: 1 !important;
    z-index: 3;
    
}

.pgwSlideshow .ps-current .ps-next {
    background: url(../img/arrrgiht.png) no-repeat;
    width: 64px;
    height: 64px;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    position: absolute;
    padding: 20px 15px 20px 20px;
    right: 0;
    top: 45%;
    cursor: pointer;
    display: block !important;
    opacity: 1 !important;
    z-index: 3;
}

.pgwSlideshow .ps-list .ps-prev {
    background:url(../img/lbleft.png) center center no-repeat rgba(0, 0, 0, 0.5);   	
     background-size: 40% auto;	
    border: 1px solid #777;
    border-left: 0;
    border-radius: 0 4px 4px 0;
    padding: 20px 15px 20px 12px;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: block !important;
     opacity: 1 !important;
}

.pgwSlideshow .ps-list .ps-next {
    background:url(../img/lbright.png) center center no-repeat rgba(0, 0, 0, 0.5);   
    background-size: 40% auto;	
    border: 1px solid #777;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    padding: 20px 12px 20px 15px;
    cursor: pointer;
    position: absolute;
    right: 0;
   top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: block !important;
    opacity: 1 !important;
}

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

.pgwSlideshow.narrow .ps-current .ps-prev {
    padding: 15px 15px 15px 12px;
    top: 40%;
    display: block !important;
    opacity: 1 !important;
    z-index: 3;
}

.pgwSlideshow.narrow .ps-current .ps-next {
    padding: 15px 12px 15px 15px;
    top: 40%;
     display: block !important;
    opacity: 1 !important;
    z-index: 3;
}

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

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

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

@media screen and (max-width: 768px) {
.ps-list{ display: none !important;}	
.pgwSlideshow .ps-current .ps-next,.pgwSlideshow .ps-current .ps-prev{width: 32px; height: 32px; background-size: 100% 100%; top: 50% !important; transform: translateY(-50%);} 
}
