/*** lightbox main container ***/

#lightbox {
position: absolute;
left: 0;
width: 100%;
z-index: 100;
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;
}

/*** image container ***/

#imageContainer {
padding:10px;
}

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

#prevLink {
left: 0;
margin:0 0 0 10px;
float: left;
background-color:transparent;
}

#prevLink:hover {
left: 0;
float: left;
background: url(../pics/lighwin_prev.gif) 0px 40px no-repeat;
}

#nextLink {
right:0;
margin:0 10px 0 0;
float: right;
background-color:transparent;
}

#nextLink:hover {
right: 0;
float: right;
background: url(../pics/lighwin_next.gif) right 40px no-repeat;
}

/*** image info container ***/

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

/*** image info ***/

#imageData {
padding:0 10px;
color: #666;
}

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

#imageData #caption {
font-weight: bold;
}

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

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

/*** close image button ***/

#imageData #bottomNavClose img {
width: 42px;
height:20px;
float: right;
padding-bottom: 0.7em;
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: 90;
padding: 0;
width: 100%;
height: 500px;
background-color:#000; /* set lightbox background-color */
}

/*** end of css ***/