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

.lightbox {
    position: fixed;
    left: 0;
    z-index: 100000;
    line-height: 0;
    font-weight: normal;
    background-color: #d2dcf2;
    border-radius: 10px;
    margin: 0px 10px 10px 0px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.lightbox .lb-overlay {
    display: block;
    padding: 9px;
    border: 1px solid #0e00bd;
    border-radius: 10px;
}
.lightbox .lb-image {
    display: block;
    padding: 3px;  
    border: 1px solid #0e00bd;
    border-radius: 10px;
    background-color: white;
}
.lightbox a img {
    border: none;
}

.lb-outerContainer {
    position: relative;
    *zoom: 1;
    width: 250px;
    height: 250px;
}
.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}
.lb-nav a {
    outline: none;
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev, .lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
}
.lb-overlay {
    cursor: pointer;
}
.lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    background: url(./img/prev.png) left 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    opacity: 0.4;
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
}
.lb-nav a.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}
.lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    background: url(./img/next.png) right 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    opacity: 0.4;
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
}
.lb-nav a.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-dataContainer {
    position: relative;
    color: black;
    font-family: Verdana, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 17px;
}
.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
}
.lb-dataContainer .lb-details {
    min-height: 47px;
    float: left;
    text-align: left;
}
.lb-dataContainer .lb-caption {
    padding-left: 4px;
}
.lb-dataContainer span.lb-section {
    display: none;
}
.lb-dataContainer .lb-closeContainer {
    position: absolute;
    right: 4px;
    top: 0px;
    height: 47px;
    min-width: 27px;
    background: url(./img/close.png) bottom right no-repeat;
    z-index: 10;
}
.lb-dataContainer .lb-number {
    text-align: right;
    font-weight: bold;
    color: #0e00bd;
}

