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

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:50%;
	left:50%;
	width:550px;
	height:450px;
	z-index:10;
	margin:-220px 0 0 -300px;
	border:1px solid #000;
	background:#FFF;
	text-align:left;
}
#lightbox[id]{
	position:fixed;
}

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

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

#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
	text-align:center;
	color:#0066CC;
	background-image: url(loading.gif);
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
	margin: 200px auto 0 auto;
}

#lightbox.done img{
}

#lightbox.done a#lbCloseButton{
	display:block;
	float: right;
	background-image: url(button-window-close.png);
	background-repeat: no-repeat;
  /*Size of the image*/
  padding-top: 18px;
  width: 22px;
  /*Hide the text*/
  overflow: hidden;
  /* WIN IE5 hack */
  height: 18px;
  voice-family: "\"}\"";
  voice-family:inherit;
  height: 0;
}
pre {}
