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

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

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

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


.lightboxdiv{
	display:none;
	position: absolute;
	z-index:9999;
	height:100%;
	width:100%;
	left: 0;
	top: 0;
	text-align: center;
	-moz-box-sizing:border-box;
}

.lightboxdiv[id]{
	position:fixed;
}

.lightbox{
	display:none;
	z-index:9999;
	width:590px;
	height:94%;
	margin: 0px;
	overflow-x: hidden;
	overflow-y: auto;
	-moz-box-sizing:border-box;
	
	/*
	top:0px;
	left:0px;
	top:50%;
	left:50%;*/
/*	left: 50%;
	top: 0;
	margin-left: -295px;
	margin-bottom: 0px;
	margin-right: 0px;
	margin-top: 0px;
	text-align:center;
*/	
/*	width:500px;
	height:400px;
	margin:-220px 0 0 -250px;
	margin:0px;
*/
/*	border:1px solid #fff;*/
/*	background:#FDFCE9;*/
}

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

.overlay[id]{
	position:fixed;
}
