#lightBoxOverlay
{
	/* behaviour */
	position		: fixed;
	width			: 100%;
	height			: 100%;
	top				: 0;
	left			: 0;
	border			: none;
	z-index			: 1000;
	display			: none;

	/* style */
	background		: #000;
	-moz-opacity	: 0.6;
	opacity			: .60;
	filter			: alpha(opacity=60);
}

.lightbox
{
	/* behaviour */
	position		: fixed;
	top				: 50%;
	left			: 50%;
	margin-top		: -200px;	
	z-index			: 1001;
	display			: none;

	/* style */
	width			: 536px;
	margin-left		: -200px; /* must be width/2 to canter the lightbox */
	background		: #FFFFFF;
	padding			: 25px;
	border			: 1px solid #323232;
/*	border			: 3px outset #0A3697;
	-moz-opacity	: 0.9;
	opacity			: .90;
	filter			: alpha(opacity=90);
*/
}

.lightbox h3
{
	padding			: 0;
	margin			: 0 0 .5em 0;
}

.lightbox input,
.lightbox textarea
{
/*	background		: #ebf0f6; */
}

