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

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:48%;
	left:75%;
	z-index:9999;
	width:300px;
	height:455px;
	margin:-220px 0 0 -250px;
	border:3px solid #000;
	background:#FDFCE9;
	text-align:left;
	overflow:auto;
}

#lightbox[id]{
	position:fixed;
}

#overlay, #overlay2{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#666699;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
	overflow:auto;
}
#overlay[id], #overlay2[id]{
	position:fixed;
}

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

/* Lightbox classes for User Permissions Grid */
#permlightbox{
	display:none;
	position: absolute;
	top:48%;
	left:45%;
	z-index:9999;
	width:200px;
	height:100px;
	border:3px solid #000;
	background:#FDFCE9;
	text-align:center;
	overflow:auto;
}

 #setalllightbox{
	display:none;
	position: absolute;
	top:35%;
	z-index:9999;
	width:500px;
	height:125px;
	border:3px solid #000;
	background:#FDFCE9;
	text-align:center;
	overflow:auto;
}

#permlightbox[id], #setalllightbox[id]{
	position:fixed;
}

#permlightbox.done #lbContent, #setalllightbox.done #lbContent{
	display:block;
}
