﻿/* slideshow supersized */
.init-supersized{
    position: relative;
}
.init-supersized #supersized-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 64px;
	height: 64px;
	margin: -30px 0 0 -30px;
	text-indent: -999em;
	background: url('/GeneralMedia/ui/ui-loading-1.gif') no-repeat center center;
}
.area-slideshow, .slideshow-fullpage, ul#supersized li.activeslide {
    z-index: 0;
}
.slideshow-fullpage {
    position: relative;
}
.slideshow-fullpage #supersized,
.slideshow-fullpage #controls-wrapper{
    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    transition: all .5s linear;

    opacity: 0;
}
.slideshow-fullpage.active-supersiszed #supersized{
    opacity: 1;
}
.slideshow-fullpage #controls-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-transition: all .5s linear;
    -moz-transition: all .5s linear;
    transition: all .5s linear;

    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color: rgba(0, 0, 0, 0.2);

}
.slideshow-fullpage.active-supersiszed #controls-wrapper {
    opacity: 1;
}

.slideshow-fullpage #controls {
    width:84%;
    max-width:1024px; 
    z-index: 3;
}
.slideshow-fullpage #slidecaption {
    color: #fff;
    text-align:center;
    font-size:30px;
    line-height:150%;
    text-shadow: none;
}
.slideshow-fullpage #slidecaption span{
    display:block;
    margin-bottom: 20px;
}
.slideshow-fullpage #slidecaption .bn-slide{
    display:inline-block;
    margin-top:0;
}
.slideshow-fullpage .nav-supersized{
    z-index: 5;
    width: 60px;
    height: 60px;
    top: 48%;
    border: none;
    font-size: 0;
    display: block;
    background-size: 100%;
    position: absolute;
    background-color: transparent;
    cursor: pointer;
}
.slideshow-fullpage .nav-supersized.prev{
    left:20px;
    background-image: url('/GeneralMedia/ui/arrow-left.png');
}
.slideshow-fullpage .nav-supersized.next{
    right:20px;
    background-image: url('/GeneralMedia/ui/arrow-right.png');
}
#supersized li.activeslide img{
    max-width: inherit;
}
.slideshow-fullpage #supersized li {
    /* Firefox v3.6+ */
    background-image: -moz-linear-gradient(rgb(50, 50, 50) 0%, rgb(238, 238, 238) 100%);
    /* safari v4.0+ and by Chrome v3.0+ */
    background-image: -webkit-gradient(linear, color-stop(0, rgb(50, 50, 50)), color-stop(1, rgb(238, 238, 238)));
    /* Chrome v10.0+ and by safari nightly build*/
    background-image: -webkit-linear-gradient(rgb(50, 50, 50) 0%, rgb(238, 238, 238) 100%);
    /* Opera v11.10+ */
    background-image: -o-linear-gradient(rgb(50, 50, 50) 0%, rgb(238, 238, 238) 100%);
    /* IE v10+ */
    background-image: -ms-linear-gradient(rgb(50, 50, 50) 0%, rgb(238, 238, 238) 100%);
    background-image: linear-gradient(rgb(50, 50, 50) 0%, rgb(238, 238, 238) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffbbbbbb,endColorstr=#ffeeeeee)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffbbbbbb, endColorstr=#ffeeeeee);
    background-color: #000;
}
@@media screen and (max-width:678px){
    .slideshow-fullpage #controls{
        width:80%;
    }
    .slideshow-fullpage #slidecaption {
        font-size:16px;
    }
}