@charset "UTF-8";
/* CSS Document */

#jet-slideshow-main-screen {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 90%;
}

#jet-slideshow-main-nav {
    position: relative;
    bottom: 0px;
    width: 100%;
    height: 10%;
}

#jet-slideshow-fullscreen {
    position: absolute;
    top: 70px;
    right: 0px;
    width: 28px;
    height: 28px;
    background-image: url(/site/images/fullscreen.png);
    background-repeat: no-repeat;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    z-index: 10000;
}
/*
#jet-slideshow-info {
    position: absolute;
    top: 100px;
    right: 0px;
    width: 28px;
    height: 28px;
    background-image: url(/site/images/info.png);
    background-repeat: no-repeat;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    z-index: 10000;
}
*/
#jet-slideshow-playpause {
    position: absolute;
    top: 100px;
    right: 0px;
    width: 28px;
    height: 28px;
    opacity: 0.3;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease;
    z-index: 10000;
}

#jet-slideshow-playpause:hover,
#jet-slideshow-info:hover,
#jet-slideshow-fullscreen:hover {
    opacity: 1;
    transition: opacity 0.3s linear 0s;
}

.jet-slideshow-play {
    background-image: url(/site/images/play.png);
    background-repeat: no-repeat;
}

.jet-slideshow-pause {
    background-image: url(/site/images/pause.png);
    background-repeat: no-repeat;
}

#jet-slideshow-image-1,
#jet-slideshow-image-2 {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0px;
    z-index: 50;
    overflow: hidden;
    visibility: hidden;
}


#jet-slideshow-main-screen img {
    display: block;
    position: absolute;
    z-index: 50;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.jet-slideshow-title {
    display: block;
    position: absolute;
    padding: 5px;
    border-radius: 2px;
    border: 1px solid black;
    z-index: 100;
    color: #000;
    font-family: "Times New Roman", Times, serif;
    font-style: normal;
    font-size: 12px;
    background-color: #FFF;
    margin-left: 47%;
    overflow: hidden;
}

/*
.jet-slideshow-description {
    display: block;
    position: absolute;
    bottom: 0px;
    background-color: #222;
    border-radius: 5px;
    border: 2px solid white;
    color: #FFF;
    z-index: 100;
    font-family: "Times New Roman", Times, serif;
    font-style: oblique;
    font-size: 14px;
    padding: 5px;
    margin-left: 25%;
    overflow: hidden;
}
*/

.jet-slideshow-title-hidden {
    opacity: 0;
    transition: opacity 1s ease;
}

.jet-slideshow-title-visible {
    opacity: 0.9;
    transition: opacity 1s ease;
}

/*.jet-slideshow-description-hidden {
    opacity: 0;
    transition: opacity 1s ease;
}

.jet-slideshow-description-visible {
    opacity: 0.6;
    transition: opacity 1s ease;
}
*/

.jet-slideshow-thumbnail {
    display: inline-block;
    position: relative;
    float: left;
    z-index: 50;
    min-height: 10px;
    max-height: 100px;
    height: 60%;
    margin: 6px;
    opacity: 0.8;
    -moz-box-shadow: 0px 0px 5px 1px #FFF;
    -webkit-box-shadow: 0px 0px 5px 1px #FFF;
    -o-box-shadow: 0px 0px 5px 1px #FFF;
    box-shadow: 0px 0px 5px 1px #FFF;
    /*    filter:progid:DXImageTransform.Microsoft.Shadow(color=#FFF, Direction=0, Strength=5);*/
    transition: opacity 0.2s ease;
}

.jet-slideshow-thumbnail:hover {
    opacity: 1;
    -moz-box-shadow: 0px 0px 5px 1px #222;
    -webkit-box-shadow: 0px 0px 5px 1px #222;
    -o-box-shadow: 0px 0px 5px 1px #222;
    box-shadow: 0px 0px 5px 1px #222;
    /*    filter:progid:DXImageTransform.Microsoft.Shadow(color=#222, Direction=0, Strength=5);*/
    transition: opacity 0.2s ease;
}

.jet-slideshow-current-thumbnail {
    display: block;
    position: relative;
    float: left;
    z-index: 50;
    margin: 6px;
    opacity: 1;
    border-color: #F99;
    border-width: 1px;
    border-style: solid;
    -moz-box-shadow: 0px 0px 5px 1px #F99;
    -webkit-box-shadow: 0px 0px 5px 1px #F99;
    -o-box-shadow: 0px 0px 5px 1px #F99;
    box-shadow: 0px 0px 5px 1px #F99;
    /*    filter:progid:DXImageTransform.Microsoft.Shadow(color=#F00, Direction=0, Strength=5);*/
}




div#jet-slideshow-thumbnails-container {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin-right: 20px;
    margin-left: 20px;
}

div#jet-slideshow-screen-navright {
    position: absolute;
    height: 100%;
    width: 100px;
    right: 0px;
    top: 0px;
    background-image: url(/site/images/right.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    z-index: 50;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

div#jet-slideshow-screen-navleft {
    position: absolute;
    height: 100%;
    width: 100px;
    left: 0px;
    top: 0px;
    background-image: url(/site/images/left.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    z-index: 50;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

div#jet-slideshow-screen-navleft:hover,
div#jet-slideshow-screen-navright:hover {
    opacity: 1;
    transition: opacity 0.3s ease;
}


/* --------------------------------------------------- rotation transition
#jet-slideshow-main-screen {
    transition: transform 2s;
    perspective:1000px;
}

.jet-slideshow-image-front {
	transform: rotateX(360deg);
    transform-style: preserve-3d;
    transition: transform .2s ease;
    backface-visibility: hidden;
}

.jet-slideshow-image-back {
    transform-style: preserve-3d;
	transform: rotateX(180deg);
    transition: transform .2s ease;
    backface-visibility: hidden;
}
--------------------------------------------------- rotation transition */

/* --------------------------------------------------- fadeout transition */

.jet-slideshow-image-front {
    background-color: #555555;
    opacity: 1.0;
    visibility: visible;
    transition: opacity .2s linear 0s;
    z-index: 501;
}

.jet-slideshow-image-back {
    background-color: #555555;
    opacity: 0.0;
    visibility: visible;
    transition: opacity .2s linear 0s;
    z-index: 500;
}

/*   --------------------------------------------------- fadeout transition */
