/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */
#cerrar {
	position: absolute;
	top:276px;
	z-index:9999;
	right:52%;
}

#cerrar[id] {
	position:fixed;
}
#container {
	position: relative;
}
#lightbox{
	position: absolute;
	top:150px;
	/*left:2px;*/
	right:49%;
	z-index:9999;
	width:125px;
	height:125px;
	text-align:left;

}
#lightbox[id]{
	position:fixed;
}

#overlay{
	display:inline;
	position: absolute;
	z-index:9998;
	width:50%;
	/*width:130px;*/
	height:1230px;
/*	margin-left:-18px;*/
	margin-top:-5px;
	left:-7px;

	background-color:#efefef;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);

}
#overlay[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

#lightbox.done img{
	width:100%;
	height:100%;
}
