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

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:11%;
	left:20%;
	z-index:800;
	width:60%;
	/*height:60%;*/
	color: black;
	background: white;
	text-align:left;
}
#lightbox[id]{
	position:absolute;
}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:700;
	background-color:#000;
	/* pour IE */
	filter: alpha(opacity=50);
	/* pour mozilla gecko */
	-moz-opacity:0.5;
	/* pour ceux qui respectent le standard CSS3 */
	opacity: 0.5;
	min-height:600px;
	min-width:450px;
}
#overlay[id]{
	position:fixed;
}

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

#lbContent .texte {
	height: 10em;
	color: black;
}
#lbContent .texte a {
	color: #0055A0;
	text-decoration:none;
}
#lbContent .texte a:hover {
	color: #0055A0;
	text-decoration:underline;
}
#lbContent {
	padding: 10px;
	border: 10px black solid;
}

html>body #lbContent .texte {
height: auto;
min-height: 10em;
}
/*#lightbox.done img{
	width:100%;
	height:100%;
}*/


#lbContent #closebutton {
	float:right;
	margin-right: -25px;
	margin-top: -25px;
}