/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

#lightbox_gw {
	display:none;
	position: absolute;
	top:50%;
	left:45%;
	z-index:9999;
	width:627px;
	/*height:400px;*/
	margin:-220px 0 0 -250px;
	padding: 7px;
	border: 3px solid #57585a;
	/*background:#FDFCE9;*/
	background: #fff;
	text-align:left;
}
#lightbox_gw[id]{
	position:fixed;
}

#overlay_gw{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000;
	-moz-opacity: 0.4;
	opacity:.40;
	filter: alpha(opacity=40);
}
#overlay_gw[id]{
	position:fixed;
}

#lightbox_gw.done #lbLoadMessage{
	display:none;
}
#lightbox_gw.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox_gw.loading #lbLoadMessage{
	display:block;
}

/*
#lightbox_gw.done img{
	width:100%;
	height:100%;
}
*/

.lbAction {
	display: block;
	width:627px;
	background: #e7e7e9;
	margin: 0 0 18px;
	padding: 5px 0;
	text-align: right;
}

.lbAction img { margin-right: 5px; }

