/* Das ist der äußere Layer */
#lightbox{
	position: absolute;
	top: 40px;
	/* schiebt das Bild nach oben so das der Rand oben kleiner wird 
	margin-top: -38px; */
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
	}

#lightbox a img{ border: none; }

/* Das ist der reine Bild Layer */
#outerImageContainer{
	position: relative;
	/* Hintergrund bei Popupbild */
	background-color: #fff; 
	border: 0px solid green;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	}

#imageContainer{
	padding: 10px; /* Rahmenbreit  - wichtig den wert zusammen mit der wert in der lightbox.js aendern*/
	}

#loading{
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
	}
#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: transparent url(../images/blank.gif) no-repeat; /* Trick IE into showing hover */
	display: block;
	}
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }


#imageDataContainer{
	font: 10px Verdana, Helvetica, sans-serif;
	/* Zeile unter dem Bild wo Close steht */
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	}

#imageData{
	padding:0 10px;
	}
#imageData #imageDetails{ 
                        border: 0px solid yellow; 
                        width: 980;  
                        text-align: left; 
                        height:40px; 
                        background: url(../bilder/bild_detail.jpg); 
                        background-repeat: no-repeat; 
                        background-position: top;
                        margin-top: -10px; 
                        margin-left: 2px;
                        }	

#imageData #caption{ font-weight: bold; }

#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em; }
	
/* Die 66px steuern den Abstand von rechts */		
#imageData #bottomNavClose{ 
        position:relative; 
        margin-top: -34px; 
        margin-left:913px; 
        width: 66px; 
        float: left;  
        /* padding-bottom: 0.7em; */
        }	
	
/* Das Deckt alles ab */	
#overlay{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
	/* versteckt die Originalseite ab */
	background-color: #000; 
	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 */
	}	
	
