/*** lightbox main container ***/

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

/*** 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-top:1px solid #fff;
border-bottom:1px solid #bfbfbf;
z-index:20000;
}

/*** 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: 30%;
height: 100%;
background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */
display: block;
margin:0 1px 0 1px;
}

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

#nextLink {
right: 0;
float: right;
background: url(../pics/next.gif) right bottom 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:none;
padding:0 0 3px 0;
}

/*** image info ***/

#imageData {
padding:0 4px 0 4px;
}

#imageData #imageDetails {
width: 70%;
float: left;
text-align: left;
}

#imageData #caption {
font-weight:normal;
text-transform:uppercase;
color: #555;
}

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

#imageData #numberDisplay {
display: block;
clear: left;
padding: 0 0 0 0;
color:#555;
}

/*** close image button ***/

#imageData #bottomNavClose img {
width: 60px;
height:14px;
float: right;
padding:14px 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: 4000;
width: 100%;
height: 500px;
background-color:#000; /* set lightbox background-color */
filter:alpha(opacity=50);
opacity: 0.5;
-moz-opacity:0.5;
}

/*** end of css ***/
