/** protobox.css **/
#overlay {
    top: 0;
    height: 100%;
    background-color: #000;
    opacity: 0.6;
    z-index: 1;
}

#lightbox {
    text-align: center;
    line-height: 0;
    z-index: 2;
}

#overlay, #lightbox {
    left: 0;
    width: 100%;
    z-index: 1;
    position: absolute;
}

#lightbox .infoContainer {
    font: 10px Verdana, Helvetica, Arial, sans-serif;
    position: relative;
    background: #FFF;
    width: 250px;
    height: 250px;
    z-index: 10;
    margin: 0 auto;
    border: 1px solid #CCC;
    border-bottom: 0;
}

#lightbox .infoTextContainer {
    font: 10px Verdana, Helvetica, Arial, sans-serif;
    position: relative;
    background: #FFF;
    width: 200px;
    height: 200px;
    z-index: 15;
    margin: 0 auto;
    padding: 0px;
}

#lightbox .protector {
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: url(../images/blank.gif) repeat;
}

#lightbox .loading {
    position: absolute;
    top: 40%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

#lightbox a {
    outline: none;
    z-index: 10;
}

#lightbox .prevLink, #lightbox .nextLink {
    position: absolute;
    top: 10px;
    height: 100%;
    z-index: 10;
    width: 60%;
    background: transparent url(../images/blank.gif) no-repeat;
}

#lightbox .prevLink {
    left: 0;
    z-index: 10;
}

#lightbox .nextLink {
    right: 0;
    z-index: 10;
}

#lightbox .prevLink:hover {
    background: url(../images/prevlabel.png) left 15% no-repeat;
    z-index: 10;
}

#lightbox .nextLink:hover {
    background: url(../images/nextlabel.png) right 15% no-repeat;
    z-index: 10;
}

#lightbox .infoDataContainer {
    font: 10px Verdana, Helvetica, Arial, sans-serif;
    background: #FFF;
    margin: 0 auto;
    line-height: 1.4em;
    overflow: hidden !important;
    color: #777;
    border: 1px solid #CCC;
    border-top: 0;
}

#lightbox .infoDataContainer .infoDetails {
    width: 70%;
    float: left;
    text-align: left;
    padding-left: 10px;
}

#lightbox .infoDataContainer .infoDetails .caption {
    font-weight: 700;
}

#lightbox .infoDataContainer .infoDetails .numberDisplay {
    clear: left;
    padding-bottom: 1em;
}

#lightbox .infoDataContainer .bottomNavClose {
    width: 66px;
    float: right;
    margin-top: 10px;
    margin-right: 10px;
    cursor: pointer;
}

