/* Preload images */
body:after {
    content: url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);
    display: none;
}

body.lb-disable-scrolling {
    overflow: hidden;
}

.lb-loader {
    position: relative;
    top: 50%;
    text-align: center;
    line-height: 0;
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../images/loading.gif) no-repeat;
}

.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #fff;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.9;
    display: none;
}

.lightbox {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    min-height: 220px;
    z-index: 10000;
    text-align: center;
    line-height: 1.1em;
    font-weight: normal;

    /*background: lightblue;*/
}

.lb-outerContainer{
    position: absolute;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    max-height: 900px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto auto;
    /*display: none;*/

    /*background: lightcoral;*/
}

.lb-dataContainer{
    width: 100%;
    height: 10%;
    min-height: 50px;

    /*background: lightcyan;*/
}

.lb-dataContainer2{
    width: 100%;
    height: 10%;
    min-height: 40px;

    /*background: lightcyan;*/
}

.lb-innerContainer{
    width: 100%;
    height: calc(80% - 30px);
    min-height: 110px;
    margin: 15px 0px;

    /*background: lightgoldenrodyellow;*/
}

.lb-container{
    display: inline-block;
    position: relative;
    float: left;
    width: 70%;
    height: 100%;
    margin: 0px 15px;
    overflow: hidden;

    /*background: lightgreen;*/
}

.lb-container img{
    position: relative;
    margin: auto;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

a.lb-nav {
    outline: none;
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-nav.lb-prev, .lb-nav.lb-next{
    display: inline-block;
    float: left;
    width: calc(15% - 15px);
    height: 100%;
}

.lb-nav.lb-prev {
    background: transparent;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
    overflow: hidden;
}

.lb-nav.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-nav.lb-next {
    background: transparent;
    opacity: 1;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
    overflow: hidden;
}

.lb-nav.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-nav.lb-prev > img, .lb-nav.lb-next > img {
    height: 100%;
}

.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-data {
    padding: 5px;
    color: #ccc;
}

.lb-data .lb-details {
    float: left;
    width: calc(100% - 60px);
    text-align: left;
}

.lb-data .lb-caption {
    font-family: Consolas, monaco, monospace;
    font-size: 17px;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
}

.lb-data .lb-number-wrapper {
    font-family: Consolas, monaco, monospace;
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 17px;
    color: #000;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}
.lb-data .lb-number span.active {
    color: #E7491B;
}
.lb-data .lb-number-wrapper a.lb-prev, .lb-data .lb-number-wrapper a.lb-next {
    font-size: 25px;
    display: inline-block;
    position: relative;
    top: 1px;
}
.lb-data .lb-number-wrapper a.lb-prev {
    padding-right: 8px;
}
.lb-data .lb-number-wrapper a.lb-next {
    padding-left: 8px;
}
.lb-data .lb-number-wrapper a.lb-prev:hover, .lb-data .lb-number-wrapper a.lb-next:hover {
    color: #E7491B;
    text-decoration: none;
}

.lb-data .lb-closeContainer {
    float: right;
}

.lb-data .lb-close {
    display: block;
    margin: 7px;
    width: 40px;
    height: 40px;
    background: url(../images/close.png) center center;
    background-repeat: no-repeat;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    z-index: 10001;
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-title{
    margin: 10px;
    font-family: Consolas, monaco, monospace;
    font-size: 14px;
    color: #000;
    font-weight: bold;
    line-height: 1.3em;
    text-transform: uppercase;
}