/**
 * 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 {
	padding: 10px;
  	background: #eee;
	border: 1px solid #e0e0e0;
    width: 100%;
    display: none;
	margin: 0;
	clear: both;
}

.pgwSlideshow ul {
	margin: 0;
	padding: 0;
	}

.pgwSlideshow a{
    color: #fff;
}

.pgwSlideshow .ps-current {
    text-align: center;
    position: relative;
    min-height: 100px;
    overflow: hidden;
}

.pgwSlideshow .ps-current > ul  > li {
    text-align: center;
    width: 100%;
    z-index: 1;
    opacity: 0;
    display: block;
}

.pgwSlideshow .ps-current .ps-prev, .pgwSlideshow .ps-current .ps-next {
	display: inline-block!important;
	}

.pgwSlideshow .ps-current > ul  > li img {
    display: block;
    max-width: 100%;
    margin: auto;
}

.pgwSlideshow .ps-caption {
    background: rgba(0, 0, 0, 0.4);
    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 {
    background: #eee;
    overflow: hidden;
    position: relative;
    max-height: 140px;
}

.pgwSlideshow .ps-list ul {
    position: relative;
    list-style: none;
    padding: 0;
    left: 0;
	width: 70%;
	margin: 0 auto;
}

.pgwSlideshow .ps-list li {
    float: left;
}

.pgwSlideshow .ps-list li .ps-item {
    display: block;
    margin: 25px 8px 15px 8px;
    opacity: 0.6;
    filter: alpha(opacity=60);
	border: 3px solid #fff;
}

.pgwSlideshow .ps-list li img {
    display: block;
    width: 160px;
    height: 90px;
}

.pgwSlideshow .ps-list li .ps-item.ps-selected {
    float: left;
    opacity: 1;
	border: 3px solid #e73a2e;
    overflow: visible;
	position: relative;
}

.pgwSlideshow .ps-list li .ps-item.ps-selected::after {
	content: "";
	position: absolute;
	top: -13px;
	left: 70px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 10px 10px;
	border-color: transparent transparent #e73b2e transparent;
}

.pgwSlideshow .ps-list .ps-prev {
    background: #eee;
    border-left: 0;
    border-radius: 0 4px 4px 0;
	width: 50px;
	height: 110px;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: 99;
    display: none;
}

.pgwSlideshow .ps-list .ps-next {
    background: #eee;
    border-right: 0;
    border-radius: 4px 0 0 4px;
	width: 50px;
	height: 110px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 25px;
    z-index: 99;
    display: none;
}

.pgwSlideshow .ps-prevIcon::before {
	content: "\e90b";
	font-family: 'icomoon' !important;
    speak: none;
	color: #e73a2e;
	font-size: 22px;
	font-style: normal;
	height: 110px;
	display: block;
	line-height: 100px;
	width: 50px;
	text-align: center;
}

.pgwSlideshow .ps-nextIcon::before {
	content: "\e90c";
	font-family: 'icomoon' !important;
    speak: none;
	color: #e73a2e;
	font-size: 22px;
	font-style: normal;
	height: 110px;
	display: block;
	line-height: 100px;
	width: 50px;
	text-align: center;
}


/*
 * The media-queries are not used because IE8 doesn't support them.
 */
 
 .pgwSlideshow.narrow .ps-list li .ps-item {
    margin: 15px 8px 5px 8px;
	}

 .pgwSlideshow.narrow .ps-list li .ps-item.ps-selected::after {display: none;}
 
 
.pgwSlideshow.narrow .ps-list li img {
    width: 60px;
    height: 60px;
}

.pgwSlideshow.narrow .ps-list .ps-prev {
    padding: 0;
    top: 0px;
}

.pgwSlideshow.narrow .ps-list .ps-next {
    padding: 0;
    top: 0px;
}

.pgwSlideshow.narrow .ps-caption {
    font-size: 0.8rem;
    padding: 8px;
}