/*** 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;
padding:0 0 40px 0;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
box-shadow:-10px 10px 10px #000;
-webkit-box-shadow:-10px 10px 10px #000;
-moz-box-shadow:-10px 10px 10px #000;
}

/*** image container ***/

#imageContainer {
padding:20px 0 40px 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: 2px;
left: 0;
height: 100%;
width: 100%;
z-index: 10;
padding:0;
}

#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/left.png) top left no-repeat;
filter:alpha(opacity=50);
opacity: 0.5;
-moz-opacity:0.5;
}

#nextLink {
right: 0;
float: right;
background: url(../pics/right.png) right top 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:transparent;
margin: 0 auto;
line-height: 1.4em;
overflow: auto;
width: 100%;
padding-top:20px;
padding-bottom:20px;
}

/*** image info ***/

#imageData {
padding:3px 0 0 0;
color:#fff;
}

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

#imageData #caption {
font-weight: normal;
text-transform: none;
font-size:1.3em;
line-height:1.5em;
font-family:Trebuchet MS,Helvetica,Arial,"Liberation sans","Bitstream Vera Sans",sans-serif;
color:#fff;
}

#imageData #caption p {
font-weight: normal;
text-transform: none;
font-size:12px;
line-height:120%;
font-family:Lucida Grande, Helvetica;
color:#fff;
}

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

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

/*** close image button ***/

#imageData #bottomNavClose img {
margin-top:-15px;
width: 30px;
height:24px;
float: right;
padding:0;
outline: none;
filter:alpha(opacity=50);
opacity: 0.5;
-moz-opacity:0.5;
cursor:pointer;
z-index:10000;
}	 	

#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;
width: 100%;
height: 500px;
background-color:#151515; /* set lightbox background-color */
}

/*** end of css ***/