#pacligth_modal{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 50000;
}
.paclight_modal_off{
	opacity: 0;
	visibility: hidden;

	transition: opacity 0.5s, visibility 0.5s;
	-webkit-transition: opacity 0.5s, visibility 0.5s;
}
.paclight_modal_on{
	opacity: 1;
	visibility: visible;

	transition: opacity 0.5s, visibility 0s;
	-webkit-transition: opacity 0.5s, visibility 0s;
}

#paclight_cuadro{
	position: absolute;
	padding: 10px;
	margin: 0px;
	box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.3);
	-ms-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.3);
	-o-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.3);

	border-radius: 5px;
	-ms-border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;

	background-color: #FFFFFF;
}
#paclight_cuadro_cerrar_btn{
	position: absolute;
	width: 20px;
	height: 20px;
	font-family: Arial;
	font-weight: bold;
	font-size: 20px;
	color: #999999;
	text-align: center;
	line-height: 20px;
	border: none;
	
	left: 100%;
	left: calc(100% - 25px);
	left: -moz-calc(100% - 25px);
	top: 5px;
}
#paclight_cuadro_cerrar_btn:hover{
	color: #666666;
	cursor: pointer;
}
#paclight_cuadro img{
	display: block;
	width: 100%;
	height: 100%;
	height: calc(100% - 25px);
	height: -moz-calc(100% - 25px);
	margin-top: 25px;
}
