/* - - - - - - - - - - - - - - - - - - - - -

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:5%;
	left:50%;
	z-index:9999;
	width:820px;
	margin:0 0 0 -395px;
	text-align:left;
}

#lightbox_content {
	margin:0;
	padding:10px 20px;
	font-size:1.2em;
	color:#006699;
	background-color:#ffffff;
}

#alert_close {
	padding-right:20px;
	width:65px;
	height:13px;
	background:url('/images/Common/alertClose.gif') no-repeat top right;
	text-align:right;
	text-decoration:none;
}

#overlay {
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000000;
	-moz-opacity:0.5;
	opacity:.50;
	filter:alpha(opacity=50);
}

#lightbox.loading #lbContent {display:none;}
#lightbox.loading #lbLoadMessage {display:block;}
#lightbox.done #lbLoadMessage {display:none;}
#lightbox.done #lbContent {display:block;}
#lightbox.done img {
	width:100%;
	height:100%;
}

.alertTextGray {
	font-size:1.0em;
	color:#666666;
}