/**
 * 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;
}

.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;
    max-width: 100%;
    margin: auto;
}

.pgwSlideshow .ps-caption {
    background:rgba(0,0,0,0.5);
    text-align: left;
    font-size: 30px;
	text-transform:uppercase;
    color: #fff;
    position: absolute;
    left: 0px;
    top: 20px;
	font-family: 'aileronbold';
    padding: 10px 20px;
    display: none;
}


.pgwSlideshow .ps-list {
    border-top: 1px solid #eaeaea;
	margin-top:30px;
	padding-top:30px;
	padding-bottom:10px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.pgwSlideshow .ps-list ul {
    position: relative;
    list-style: none;
    margin: 0!important;
    padding: 0;
    left: 0;
}

.pgwSlideshow .ps-list li {
    float: left;
}

.pgwSlideshow .ps-list li .ps-item {
    display: block;
    opacity: 0.6;
	margin:0px 25px;
    filter: alpha(opacity=60);
	position:relative;
	overflow:hidden;
}
.pgwSlideshow .ps-list li:first-child .ps-item {
}
.pgwSlideshow .ps-list li:last-child .ps-item {
	margin-right:0px;
}

.pgwSlideshow .ps-list li img {
    display: block;
    width: 250px;
    height: 160px;
}
.pgwSlideshow .ps-list li span.img-title{
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	background:rgba(0,0,0,0.5);
	color:#fff;
	text-transform:uppercase;
	font-size:18px;
	font-family: 'aileronbold';
	padding:4px 10px;
	opacity:0;
}
.pgwSlideshow .ps-list li .ps-item.ps-selected span.img-title, .pgwSlideshow .ps-list li .ps-item:hover span.img-title{
	opacity:1;
}
.pgwSlideshow .ps-list li .ps-item.ps-selected {
    float: left;
    opacity: 1;
    overflow: hidden;
}


.pgwSlideshow .ps-prevIcon {
    border-color:transparent #fff transparent;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    display: none;
}
#gallery-slider ul{
	padding-left:0px!important;
}
.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(../images/gal-nav-left.png) no-repeat center rgba(255,255,255,0.7);
    border-radius: 100px;
    width:100px;
	height:100px;
    position: absolute;
    left: 20px;
    top: 45%;
    cursor: pointer;
}

.pgwSlideshow .ps-current .ps-next {
    background:url(../images/gal-nav-right.png) no-repeat center rgba(255,255,255,0.7);
    border-radius: 100px;
    width:100px;
	height:100px;
    position: absolute;
    padding: 20px 15px 20px 20px;
    right: 20px;
    top: 45%;
    cursor: pointer;
}

.pgwSlideshow .ps-list .ps-prev {
    background:url(../images/car-arw-left.png) no-repeat left center #fff;
    padding: 20px 15px 20px 12px;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 10px;
    z-index: 1000;
    display: none;
	height:100%;
}

.pgwSlideshow .ps-list .ps-next {
    background:url(../images/car-arw-right.png) no-repeat right center #fff;
    padding: 20px 12px 20px 15px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 1000;
    display: none;
	height:100%;
}

/*
 * 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;
}