/* LIGHTBOX STUFF */

#overlay {
    position: fixed;
    _position: absolute;
    top: 0;
    left: 0;
    right:0;
    bottom:120px;
    background: #000;
    background: rgba(0, 0, 0, 0.8);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    *filter: alpha(opacity=80);
    display: none;
    z-index: 9999;
}

#lightbox {
    position: absolute;
    top: 50%;
    left: 50%;
    /*padding: 0px 0px 118px;*/
    /*background: #000;*/
    width: 300px;
    height: 300px;
    margin: auto;
    margin-top: -150px;
    margin-left: -150px;
    display: none;
    /*z-index: 10000;*/
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 1), 0 0 50px rgba(0, 0, 0, 1);
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
}

#lightbox.loading {
    background: #000 url('../img/ajax-loader.gif') no-repeat 50% 50%;
}

#overlay a.close {
    background: transparent url('../img/button-close.png') no-repeat left center;
    width: 30px;
    height: 30px;
    color: #ccc;
    position: absolute;
    right: 10px;
    top: 10px;
    display: block;
    font-size: 10px;
    z-index: 5;
    opacity: 0.7;
}

#overlay a.prev, #overlay a.next {
    position: absolute;
    display: block;
    top: 50px;
    bottom:50px;
    left: 0;
    /* padding: 30% 0px 40%;*/
    width: 50px;
    /* height:30px;*/
    background: transparent url('../img/button_prev.png') no-repeat left center;
    opacity: 0.5;
}

#overlay a.next {
    left: auto;
    right: 0;
    background-image: url('../img/button_next.png');
    background-position: right center;
}

#overlay a:hover.prev, #overlay a:hover.next, #overlay a:hover.close {
    opacity: 1;
}

#filmstrip {
    background: #000;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    background-color: rgba(0,0,0,0.9);
    color: #fff;
    height: 100px;
    padding: 10px 0;
    position: absolute;
    bottom: -120px;
    left:0;
    right: 0;
    overflow: hidden;
}

#filmstrip ul {
    list-style: none;
    width: 10000px;
    margin: 0;
    padding: 0;
}

#filmstrip li {
    display: block;
    float: left;
    /* width:150px;*/
    margin: 0;
    padding: 2px;
    opacity: .7;
}

#filmstrip img {
    height: 100px;
    width: auto;
}

#filmstrip div {
    display: none;
}

#filmstrip li:hover {
    opacity: 1;
}

#filmstrip a.prev, #filmstrip a.next {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -2px;
    padding: 33px 0px;
    width: 30px;
    opacity: 1.0;
    background: #000;
    background: -moz-linear-gradient(left, #000, transparent);
    background: -webkit-gradient(linear, left top, right top, color-stop(0.0, black), color-stop(0.7, rgba(0, 0, 0, .5)), color-stop(1.0, transparent));
    z-index: 10;
    text-decoration: none;
}

#filmstrip a.next {
    left: auto;
    right: -2px;
    text-align: right;
    background: -moz-linear-gradient(right, #000, transparent);
    background: -webkit-gradient(linear, right top, left top, color-stop(0.0, black), color-stop(0.7, rgba(0, 0, 0, .5)), color-stop(1.0, transparent));
}

#filmstrip a.next:after {
    content: url('../img/button_next.png');
    opacity: 0.6;
    z-index: 10;
}

#filmstrip a.prev:after {
    content: url('../img/button_prev.png');
    opacity: 0.6;
    z-index: 10;
}

#filmstrip a.next:hover:after {
    content: url('../img/button_next.png');
    opacity: 1.0;
}

#filmstrip a.prev:hover:after {
    content: url('../img/button_prev.png');
    opacity: 1.0;
}

.albumTitle {
    background: #000;
    background-color: rgba(0, 0, 0, .8);
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 5px #000;
    -webkit-box-shadow: 1px 1px 5px #000;
    box-shadow: 1px 1px 5px #000;
    color: #eee;
    font-size: 1.5em;
    /*font-style: italic;*/
    text-decoration: none;
    text-align: center;
    z-index: 20;
    position: absolute;
    display: none;
    width: 180px;
    padding: 10px;
}

#lbTitle {
    background-color: rgba(0, 0, 0, .5);
    background: -moz-linear-gradient(top, #000, #000, transparent);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, black), color-stop(0.25, black), color-stop(1.0, transparent));
    color: #eee;
    font-size: 1.8em;
    /*font-style: italic;*/
    font-weight: bold;
    text-shadow: #000 1px 1px 2px;
    position: absolute;
    /* line-height:1.2;*/
    margin: -10px 0;
    padding-bottom: 4px;
    width: 97%;
    z-index: 4;
}
