/*
 * Ext Core Library Examples 3.0
 * http://extjs.com/
 * Copyright(c) 2006-2009, Ext JS, LLC.
 * 
 * The MIT License
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 * 
 */

#ux-lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 15000;
    text-align: center;
    line-height: 0;
}

#ux-lightbox img {
    width: auto;
    height: auto;
}

#ux-lightbox a img {
    border: none;
}

#ux-lightbox-outerImageContainer {
    position: relative;
    /* background-color: #f3efec; */
    background-color: #fff;  
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

#ux-lightbox-imageContainer {
    padding: 10px;
}

#ux-lightbox-loading{
    position: absolute;
    top: 40%;
    left: 0%;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
    background: url(Images/lb-load.gif) no-repeat center 15%;
}

#ux-lightbox-hoverNav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

#ux-lightbox-imageContainer > #ux-lightbox-hoverNav {
    left: 0;
}

#ux-lightbox-hoverNav a{
    outline: none;
}

#ux-lightbox-navPrev,
#ux-lightbox-navNext {
    width: 49%;
    height: 100%;
    background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */
    display: block;
}

#ux-lightbox-navPrev { left: 0; float: left;}
#ux-lightbox-navNext { right: 0; float: right;}
/* #ux-lightbox-navPrev:hover, #ux-lightbox-navPrev:visited:hover { background: url(Images/lb-prev.png) left 33% no-repeat; } */
/* #ux-lightbox-navNext:hover, #ux-lightbox-navNext:visited:hover { background: url(Images/lb-next.png) right 33% no-repeat; } */
#ux-lightbox-navPrev:hover, #ux-lightbox-navPrev:visited:hover { background: url(Images/lb-prevlabel.png) left 50% no-repeat; }
#ux-lightbox-navNext:hover, #ux-lightbox-navNext:visited:hover { background: url(Images/lb-nextlabel.png) right 50% no-repeat; }

#ux-lightbox-outerDataContainer {
    margin: 0 auto;
    width: 100%;
}

#ux-lightbox-dataContainer{
    font: 10px Verdana, Helvetica, sans-serif;
    /* background-color: #f3efec; */
    background-color: #fff;  
    overflow: auto;
    line-height: 1.4em;
}

#ux-lightbox-data{	padding:0 10px; color: #666; }
#ux-lightbox-data #ux-lightbox-details{ width: 80%; float: left; text-align: left; }
#ux-lightbox-data #ux-lightbox-caption{
	font-weight: bold;
	font-size:16px;
	color:#DD5800;
	padding-left: 8px;
}
#ux-lightbox-data #ux-lightbox-imageNumber{
	display: block;
	font-size:11px;
	font-weight: bold;
	clear: left;
	padding-left: 8px;
	padding-top: 5px;
	color:#36C;
	padding-bottom: 1em;
}
/* #ux-lightbox-data #ux-lightbox-navClose{ background: url(Images/lb-close.gif) no-repeat; width: 66px; height: 22px; float: right;  padding-bottom: 0.7em; outline: none;} */
#ux-lightbox-data #ux-lightbox-navClose{ background: url(Images/lb-closelabel.gif) no-repeat; width: 130px; height: 46px; float: right;  padding-bottom: 0.7em; outline: none;}
/* #ux-lightbox-data #ux-lightbox-navClose:hover{ background-image: url(Images/lb-close-over.gif);} */
#ux-lightbox-data #ux-lightbox-navClose:hover{ background-image: url(Images/lb-closelabel-over.gif);}

#ux-lightbox-overlay,
#ux-lightbox-shim{
	border: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 14999;
	width: 100%;
	height: 500px;
	background-color: #000;
	padding: 0;
	margin: 0;
}

#ux-lightbox-shim {
    z-index: 89;
    background-color: transparent;
    filter: alpha(opacity=0);
}

