/*** lightbox main container ***/

#lightbox div {float:none;}

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

/*** image ***/

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

#lightbox a img {
border: none;
}

/*** image main container ***/

#outerImageContainer {
position: relative;
background-color: #fff;
width: 250px;
height: 250px;
margin: 0 auto;
border:1px solid #808080;
}

/*** image container ***/

#imageContainer {
padding:0;
}

/*** loading anim-gif ***/

#loading {
position: absolute;
top: 40%;
left: 0%;
height: 25%;
width: 100%;
text-align: center;
line-height: 0;
/* background: url(../pics/loading.gif) 50% 50% no-repeat; */
}

/*** image navigation (next - previous) ***/

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

#imageContainer>#hoverNav {
left: 0;
}

#hoverNav a {
outline: none;
}

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

#prevLink {
left: 0;
float: left;
background: url(../pics/prevlabel.gif) left 200px no-repeat;
filter:alpha(opacity=50);
opacity: 0.5;
-moz-opacity:0.5;
}

#nextLink {
right: 0;
float: right;
background: url(../pics/nextlabel.gif) right 200px no-repeat;
filter:alpha(opacity=50);
opacity: 0.5;
-moz-opacity:0.5;
}

#prevLink:hover,
#prevLink:visited:hover {
filter:alpha(opacity=100);
opacity: 1;
-moz-opacity:1;
}

#nextLink:hover,
#nextLink:visited:hover {
filter:alpha(opacity=100);
opacity: 1;
-moz-opacity:1;
}

/*** image info container ***/

#imageDataContainer {
font: 10px Verdana, Helvetica, sans-serif;
background-color: #fff;
margin: 0 auto;
line-height: 1.4em;
overflow: auto;
width: 100%;
border:1px solid #808080;
border-top:none;
}

/*** image info ***/

#imageData {
padding:0 1px;
color: #808080;
}

#imageData #imageDetails {
width: 70%;
float: left;
text-align: left;
padding:5px 0 0 5px;
}

#imageData #caption {
font-weight:bold;
text-transform:uppercase;
}

/*** image-nr / of total images ***/

#imageData #numberDisplay {
display: block;
clear: left;
padding: 5px 0 5px 0;
}

/*** close image button ***/

#imageData #bottomNavClose img {
width: 40px;
height:15px;
float: right;
padding:4px 0 0 0;
margin:19px 0 0 0;
outline: none;
filter:alpha(opacity=50);
opacity: 0.5;
-moz-opacity:0.5;
cursor:pointer;
}	 	

#imageData #bottomNavClose img:hover {
cursor:pointer;
filter:alpha(opacity=100);
opacity: 1;
-moz-opacity:1;
}	 	

/*** transparent background ***/

#overlay {
position: absolute;
top: 0;
left: 0;
z-index: 30;
width: 100%;
height: 500px;
background-color:#000; /* set lightbox background-color */
}

/*** end of css ***/