#display{
	position:fixed;
	top:0;
	left:0;
	z-index:1000;
	height:100%;
	width:100%;
	/*background-color:<?php echo get_option('el_color');?>;
	opacity:<?php echo get_option('la_transparencia');?>;
	filter:alpha(opacity=98); /* For IE8 and earlier */
}
@keyframes girar{
	from{
		transform:scale(.8);
	}
	to{
		transform:rotate(180deg) scale(.8);
	}
}
@-moz-keyframes girar{
	from{
		-moz-transform:scale(.8);
		transform:scale(.8);
	}
	to{
		-moz-transform:rotate(180deg) scale(.8);
		transform:rotate(180deg) scale(.8);
	}
}
@-webkit-keyframes girar{
	from{
		-webkit-transform:scale(.8);
		transform:scale(.8);
	}
	to{
		-webkit-transform:rotate(180deg) scale(.8);
		transform:rotate(180deg) scale(.8);
	}
}
@-o-keyframes girar{
	from{
		-o-transform:scale(.8);
		transform:scale(.8);
	}
	to{
		-o-transform:rotate(180deg) scale(.8);
		transform:rotate(180deg) scale(.8);
	}
}
#display #engranaje{
	animation:girar 2s infinite linear;
	width:240px;
	height:240px;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	margin:auto;
}
#display img, #display object{
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	margin:auto;
}
#loading{
	margin-top:30px;
	text-align:center;
	color:white;
}