
/* Caja */

#myLightBox{
	position:fixed;
	z-index:100000000002;
	padding:20px;
	background:#ffffff;
	-moz-box-shadow:1px 1px 3px #686868;
	-webkit-box-shadow:1px 1px 3px #686868;
	box-shadow:1px 1px 3px #686868;

}

/* Caja interior con scroll*/

#myLightBoxCont{
	position:relative;
	width:auto;
	height:100%;
	padding-right:10px;
	overflow:hidden;
}


/* boton cerrar */

#myLightBoxClose{
	position:absolute;
	width:auto;
	height:auto;
	cursor:pointer;
	padding:7px 10px;
	background:#ffffff;

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow:1px 1px 3px #686868;
	-webkit-box-shadow:1px 1px 3px #686868;
	box-shadow:1px 1px 3px #686868;
	font-family:'BenguiatStd_BoldCondensed',Arial,sans-serif;
}


/* Fondo que tapa la pantalla */

#myLightBoxCover{
	position:fixed;
	z-index:100000000001;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	background:#000000;
}