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

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%;
        height: 380px;
        width:450px;
	z-index:9999;
	margin:-180px 0 0 -230px;
	background:#FFFFFF;
	text-align:left;
}
#lightbox[id]{
	position:fixed;
}
/*Esta parte es para definir el fondo translucido*/

#overlay{
	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[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}
/*lightbox nootes*/
#divout {
    height:380px;
    width:450px;
    background: #FFA826;
    color: #FFF;
    font-size:20px;
    padding-left:10px;
    padding-right:10px;
    padding-bottom:10px;
    padding-top:10px;
}
#divin {
    background:#FFF;
    height: 315px;
    width:450px;
}
#close{float:right;}
#texto{float:left;} 