
#shadowing
{
	display: none;
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: #CCA;
	z-index:10000;
	opacity:0.5;
	filter: alpha(opacity=50);
}

.closebox {
    position: absolute;
    top: 0%;
    right: 0%;
    background: none;
    border: none;
    font-size: 20px;
    color: red;
}
.closebox:hover {
    cursor:pointer;
}

.lightbox 
{
    display: none;
    position: fixed;
    top: -20%;
    left: 20%;
    width: 60%;
    height: 60%;
    padding: 48px;
    margin: 0;
    border: 1px solid black;
    background-color: white;
    z-index: 10001;
    overflow: auto;
transition: all 1s ease;
    transform: perspective( 600px ) rotateX(-90deg) rotateY(0deg);
}
.muestraLight{
transition: all 1s ease;
transform: perspective( 1000px ) rotateX(0deg) rotateY(0deg) !important;
}

#boxtitle
{
	position:absolute;
	float:center;
	top:0;
	left:0;
	width:100%;
	height:24px;
	padding:0;
	padding-top:4px;
	left-padding:8px;
	margin:0;
	border-bottom:4px solid #3CF;
	background-color: #09c;
	color:white;
	text-align:center;
}


