/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

#lightbox{
	display:none; 
	position: absolute;
	top:140px;
	left:207px;
	z-index:9999;
	width:500px;
	height:320px;
/*	margin:-220px 0 0 -250px; */
	background:white;
	text-align:left;
	padding: 10px;
	border: 8px gray solid;
}
#lightbox[id]{
	position:fixed;
}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000;
	-moz-opacity: 0.4;
	opacity:.40;
	filter: alpha(opacity=40);
}
#overlay[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

/* #lightbox.done img{
	width:100%;
	height:100%;
} */

a.close {
	float: right;
}

fieldset.empfehlung { 	border: none;  }
fieldset.empfehlung br { clear: both; }
label#message1, label#message2, label#message3, label#message4 { 	float: left; width: 150px; text-align: right; padding-top: 2px;  }
fieldset.empfehlung input.name { 	float: left; width: 200px; margin-bottom: 5px; margin-left: 8px; font: 11px Arial,Verdana,sans-serif,Myuen,Gulim; padding-left: 1px; }
fieldset.empfehlung input.senden { 	font: 11px Arial,Verdana,sans-serif,Myuen,Gulim; margin-top: 10px; }
fieldset.empfehlung textarea { 	width: 485px; font: 11px Arial,Verdana,sans-serif,Myuen,Gulim; }
span.error { 	color: #DD0000; font-weight: bold; margin-left: 10px; visibility: hidden;  }
input.error {	border: 2px #DD0000 solid; }

div.bestaetigung {	display: none; visibility: hidden; }
div.bestaetigung a { color: #1D2C5B; text-decoration: underline;  }

