/**
 * Lightbox Styles
 * Required for the lightbox module to function
 */

#lightbox {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5000;
    background-color: #000;
    display: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

#lightbox-div {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5001;
    display: none;
    margin: 0;
    padding: 10px;
    width: 400px;
    height: 200px;
    background-color: #fff;
    background-image: url(../img/ctrl/loading.gif);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 0 0 8px 4px #000;
}

#lightbox-img {
    position: relative;
    z-index: 5002;
    display: block;
    margin: 0 auto;
    padding: 0;
    border: 0;
}

#lightbox-caption {
    margin: 0;
    padding: 7px 0 0 0;
    display: block;
    float: left;
    font-size: 0.825em;
    line-height: 1.4em;
    color: #808080;
    font-family: verdana, arial, helvetica, sans-serif;
}

#lightbox-left-arrow {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5003;
    margin: 2px 0 0 2px;
    padding: 0;
    width: 40px;
    height: 40px;
    display: block;
    background-image: url(../img/ctrl/back.png); /* This is for IE hover issues */
    background-position: center;
    background-repeat: no-repeat;
}

#lightbox-left-arrow:hover {
    background-image: url(../img/ctrl/left-white.png);
    background-position: center;
    background-repeat: no-repeat;
}

#lightbox-right-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5003;
    margin: 2px 2px 0 0;
    padding: 0;
    width: 40px;
    height: 40px;
    display: block;
    background-image: url(../img/ctrl/back.png); /* This is for IE hover issues */
    background-position: center;
    background-repeat: no-repeat;
}

#lightbox-right-arrow:hover {
    background-image: url(../img/ctrl/right-white.png);
    background-position: center;
    background-repeat: no-repeat;
}

#lightbox-close {
    margin: 14px 0 0 0;
    padding: 0;
    width: 21px;
    height: 21px;
    display: block;
    float: right;
    background-image: url(../img/ctrl/close.gif);
    background-position: center;
    background-repeat: no-repeat;
}

/**
 * Optional user-specific styles
 */

.thumb {
    margin: 0;
    padding: 3px;
    border: solid 1px #aaa;
    background-color: #eee;
}

.thumb:hover {
    background-color: #effcff;
}
