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

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

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

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

/* generale */
#lightbox{
	position: absolute;
	left:50%;
	top: 50%;
	z-index:9999;
	/*width:720px;
	height: 410px;*/
	width:720px;
	height: 560px;
	overflow: hidden;
	/*margin: -205px 0 0 -360px;*/
	margin: -260px 0 0 -360px;
	background: none;
}

.defaultLightboxContainer{
	position: absolute;
	left:50%;
	width:720px;
	/*height: 410px;*/
	height: 500px;
	overflow: hidden;
	margin: 0 0 0 -360px;
}

#lightbox[id]{
	position:fixed;
}

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

/*#lightbox.done #lbLoadMessage{
	display:none;
}*/
#lightbox.done #lbContent{
	/*display:block;
	position:relative;
	z-index:2;*/
}
/*
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
	margin: 0 auto;
}*/

/* contenuto */
/*#lbLoadMessage 				{ position: absolute; width: 20px; height: 20px; padding: 10px; top: 0; left: 50%; margin: 80px 0 0 -20px; background: url(../images/commons/bg-progress_bar.png) no-repeat 0 0; }*/

#lightbox a.lbAction.close 	{ float: right; text-decoration: none; border-bottom: 0; }
#lightbox a.close			{ height: 36px; width: 34px; margin: 0 8px -36px 0; position: relative; z-index:10000; cursor: pointer; }
#lightbox a.lbAction,
#lightbox a					{ /*color: #00526c;*/ border-bottom: 0; text-decoration: underline; font-size: 10px; }
#lightbox a.lbAction:hover,
#lightbox a:hover			{ text-decoration: none; }

#lightbox.done img,
#lightbox.done a img 		{ visibility: visible; }
