/* Preload images */
body:after {
    display: none;
}

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

.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1000000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.lightbox a img {
    border: none;
}

.lb-outerContainer {
    position: relative;
    background-color: #111;
    *zoom: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 5px 5px 0 0;
}

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

.lb-container {
    padding: 4px;
}

.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
}

.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.lb-container > .nav {
    left: 0;
}

.lb-nav a {
    outline: none;
}

.lb-prev, .lb-next {
    font-size: 24px;
    font-weight: bold;
    color: #CCC;
    height: 100%;
    cursor: pointer;
    display: block;
    vertical-align: middle;
    line-height: 50px;
    text-shadow: 0 1px 1px #000;
}

.lb-nav a.lb-prev {
    width: 33%;
    left: 0;
    float: left;
    padding-left: 15px;
    text-align: left;
    opacity: 0;
}

.lb-nav a.lb-prev div {
    position: absolute;
    top: 45%;
    left: 15px;
}

.lb-nav a.lb-prev:hover {
    opacity: 1;
    text-decoration: none;
    color: #FFF;
}

.lb-nav a.lb-next {
    width: 33%;
    right: 0;
    float: right;
    text-align: right;
    padding-right: 15px;
    opacity: 0;
}

.lb-nav a.lb-next div {
    position: absolute;
    top: 45%;
    right: 15px;
}

.lb-nav a.lb-next:hover {
    opacity: 1;
    text-decoration: none;
    color: #FFF;
}

.lb-dataContainer {
    background: #111;
    margin: 0 auto;
    padding-top: 5px;
    *zoom: 1;
    width: 100%;
    border-radius: 0 0 5px 5px;
}

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

.lb-data {
    padding: 0 4px;
    color: #CCC;
}

.lb-data .lb-details {
    padding: 0 0 8px 5px;
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em;
}

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
}

.lb-data .lb-number {
    display: block;
    clear: left;
    font-size: 12px;
    color: #999;
}

.lb-data .lb-close {
    font-size: 24px;
    color: #CCC;
    float: right;
    line-height: 20px;
    text-shadow: 0 1px 1px #000;
    margin-right: 5px;
    padding-bottom: 8px;
}

.lb-data .lb-close:hover {
    cursor: pointer;
    color: #FFF;
}

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