/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
*/
#jquery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90000;
    width: 100%;
    height: 1000px;
}
#jquery-lightbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    z-index: 100000;
    text-align: center;
    line-height: 0;
    display:none;
}
#lightbox-embed {
    display:none;
    position:relative;
    z-index:100;
}
#jquery-lightbox a img { border: none; }
#lightbox-container-image-box {
    position: relative;
    background-color:#232323;
    background:rgba(1,1,1,0.75);
    padding:10px;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

#close_holder {
    width:820px; position:absolute; z-index:90000000; height:10px;
}

#lightbox-container-image { display:table-cell; vertical-align:middle; }
#lightbox-loading {
    /*box-shadow:inset 0 0 0 10px rgba(1,1,1,0.75);*/
    position: absolute;
    z-index:120;
    top:0;
    left:0;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 0;
    display:block !important;
}
#lightbox-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    background:url("../images/preloader.png") no-repeat center center;
    -webkit-animation-name: rotate;
    -webkit-animation-duration:2s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:linear;
    -moz-animation-name: rotate;
    -moz-animation-duration:2s;
    -moz-animation-iteration-count:infinite;
    -moz-animation-timing-function:linear;
}

#jquery-lightbox a img {display:none;}

#lightbox-container-image-box > #lightbox-nav { left: 0; }
#lightbox-nav a { outline: none;}
#lightbox-nav-btnNext {
    width: 100%;
    height: 100%;
    zoom: 1;
    display: block;
    right: 0; 
    float: right;
}
#lightbox-container-image-data-box {
    font: 10px Verdana, Helvetica, sans-serif;
    margin: 0 auto;
    line-height: 1.4em;
    overflow: hidden;
    width: 100%;
    padding: 0 10px 0;
    position:relative;
    z-index:10000000000;
    top:-325px;
    cursor:pointer;
}

#lightbox-nav-next {
    float:right; 
    width:27px; 
    height:27px;
    display:block;
    margin-right:-7px;
    background:url("../images/prod_next_down.png") no-repeat left center;
    transition:all 0.25s ease 0s;
    -moz-transition:all 0.25s ease 0s;
    -webkit-transition:all 0.25s ease 0s;
    -o-transition:all 0.25s ease 0s;
    -ms-transition:all 0.25s ease 0s;
}

#lightbox-nav-next:hover {
    background:url("../images/prod_next_over.png") no-repeat left center;
}

#lightbox-nav-prev {
    float:left; 
    width:27px; 
    height:27px;
    display:block;
    margin-left:-7px;
    background:url("../images/prod_prev_down.png") no-repeat left center;
    transition:all 0.25s ease 0s;
    -moz-transition:all 0.25s ease 0s;
    -webkit-transition:all 0.25s ease 0s;
    -o-transition:all 0.25s ease 0s;
    -ms-transition:all 0.25s ease 0s;
}

#lightbox-nav-prev:hover {
    background:url("../images/prod_prev_over.png") no-repeat left center;
}

#lightbox-nav-next img, #lightbox-nav-prev img {
    width:27px; 
    height:27px;
}
#lightbox-container-image-data {
    padding: 0 10px; 
    color: #666; 
}
#lightbox-container-image-data #lightbox-image-details { 
    width: 70%; 
    float: left; 
    text-align: left; 
}

#lightbox-secNav-btnClose { 
    width:27px; 
    height:27px; 
    float:right; 
    margin-right:-17px;
    margin-top:-10px;
    background:url("../images/btn_close_down.png") no-repeat left top;
    transition:all 0.25s ease 0s;
    -moz-transition:all 0.25s ease 0s;
    -webkit-transition:all 0.25s ease 0s;
    -o-transition:all 0.25s ease 0s;
    -ms-transition:all 0.25s ease 0s;
}

#lightbox-secNav-btnClose:hover {
    background:url("../images/btn_close_over.png") no-repeat left top;
}

#lightbox-secNav-btnClose img {
    width:27px;
    height:24px;
}

@-webkit-keyframes rotate {
    from {-webkit-transform:rotate(0deg);}
to {-webkit-transform:rotate(360deg);}
}

@-moz-keyframes rotate {
    from {-moz-transform:rotate(0deg);}
to {-moz-transform:rotate(360deg);}
}