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

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%;
	z-index:9999;
	width:500px;
	margin:-100px 0 0 -250px;
	text-align:left;
}
#lightbox[id]{
	position:fixed;
}

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

#lightbox.done {
  border: 3px solid #F2B41E; 
  background: #fffcf2;
	padding: 10px;
}

#lightbox.done #lbLoading{
	display:none;
}

#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoading{
	display:block;
	margin: auto auto;
}

#close{ 
  position:absolute;
  top:-5px;
  right:-5px;
  cursor:pointer; 
}