/**
 * 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: url(../images/jp-bgcolor.jpg);
    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%;
	border-radius: 2px;
    margin: auto;
}

.pgwSlideshow .ps-caption {
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 14px;
    color: #fff;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    display: none;
}

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

.ps-caption b {
  margin:0 5px;
}


.pgwSlideshow .ps-list {
    border-top: 1px solid #999;
    box-shadow: 0 10px 10px -5px #999 inset;
    background: #eeeeee;
    overflow: hidden;
    position: relative;
	/* max-height:100px;*/
}

.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;
    width: 100px;
    height: 65px;
}

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

.pgwSlideshow .ps-list li .ps-item.ps-selected img {
  
}

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

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

.pgwSlideshow .ps-current .ps-prev {
    background: rgba(79, 80, 89, 0.5);
    border-left: 0;
    border-radius: 4px;
    position: absolute;
    padding: 50px 20px 50px 20px;
    left: 6%;
    top: 45%;
    cursor: pointer;
}

.pgwSlideshow .ps-current .ps-next {
    background: rgba(79, 80, 89, 0.5);
    border-right: 0;
    border-radius: 4px;
    position: absolute;
    padding: 50px 20px 50px 20px;
    right: 6%;
    top: 45%;
    cursor: pointer;
}

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

.pgwSlideshow .ps-list .ps-next {
    background: rgba(79, 80, 89, 0.5);
    border-right: 0;
    border-radius: 4px 0 0 4px;
    padding: 20px 12px 20px 15px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 25px;
    z-index: 1000;
    display: none;
}


.pgwSlideshow.narrow .ps-list li img {
    width: 80px;
    height: 52px;
}

.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;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

@media (min-width: 1650px){
	.pgwSlideshow .ps-current .ps-prev{left: 15%;}
	.pgwSlideshow .ps-current .ps-next{right: 15%;}
}

@media only screen and (min-width: 1500px)and (max-width: 1650px){
	.pgwSlideshow .ps-current .ps-prev{left: 12%;}
	.pgwSlideshow .ps-current .ps-next{right: 12%;}
}

@media (max-width: 1280px){
	.pgwSlideshow .ps-current .ps-prev{left: 6%;}
	.pgwSlideshow .ps-current .ps-next{right: 6%;}
}














