/*
<div style="height: 895px; opacity: 0.8;" id="overlay"></div>
<div style="top: 54.4667px;" id="lightbox">
  <div style="font-size: 37.417px; height: 348px; width: 420px;" id="outerImageContainer">
    <div id="imageContainer">
      <img src="http://localhost/wbnn/public/fotos/clown.jpg" style="opacity: 0.999999;" id="lightboxImage">
      <div style="" id="hoverNav">
        <a style="display: none; height: 328px;" href="#" id="prevLink"></a>
        <a style="display: none; height: 328px;" href="#" id="nextLink"></a>
      </div>
      <div style="display: none;" id="loading">
        <a href="#" id="loadingLink">
          <img src="images/loading.gif">
        </a>
      </div>
    </div>
  </div>
  <div style="width: 420px; opacity: 0.999999;" class="clearfix" id="imageDataContainer">
    <div style="" id="imageData">
      <div id="imageDetails">
        <span id="caption"></span>
        <span style="display: none;" id="numberDisplay"></span>
      </div>
      <div id="bottomNav">
        <a href="#" id="bottomNavClose">
          <img src="images/closelabel.gif">
        </a>
      </div>
    </div>
  </div>
</div>
*/

/* Mine */

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

#lightbox a img{ border: none; }

#outerImageContainer{
	position: relative;
    background-color: white;
    border: 10px solid #b13885;
	  width: 300px;
	height: 250px;
	margin: 0 auto;
	}

#imageContainer{
	padding: 10px;
	}

#loading{
    display: none;
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
	}
#hoverNav{
	  height: 35px;
	width: 100%;
	  background: white;
	}
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{
	width: 49%;
	height: 100%;
	  background: transparent url(../img/lightbox/blank.gif) no-repeat; /* Trick IE into showing hover */
	display: block;
	}
	
	/* Mine */
  #prevLink { left: 0; float: left; background: url(../img/lightbox/vorige.png) left top no-repeat; }
  #nextLink { right: 0; float: right; background: url(../img/lightbox/volgende.png) right top no-repeat; }


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

#imageData{
	padding: 10px;
	}
#imageData #imageDetails{ /* Mine */ width: 50%; float: left; text-align: left; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}			
#imageData #bottomNavClose{ width: 117px; float: right;  padding-bottom: 0.7em;	}	
		
#overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 90;
	  background-color: #fff;
	
	/* Unneeded?
	height: 500px;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6; */
}
	

.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
	}

* html>body .clearfix {
	display: inline-block; 
	width: 100%;
	}

* html .clearfix {
	/* Hides from IE-mac \*/
	height: 1%;
	/* End hide from IE-mac */
	}	
	
