@-webkit-keyframes alpha {
	from { -webkit-opacity:0; }
	to { -webkit-opacity:1; }
}
@-moz-keyframes alpha {
	from { -moz-opacity:0; }
	to { -moz-opacity:1; }
}
@keyframes alpha {
	from { opacity:0; }
	to { opacity:1; }
}
/**/
@-webkit-keyframes alphaTop {
	from { -webkit-opacity:0; margin-top:-5%; }
	to { -webkit-opacity:1; margin-top:0; }
}
@-moz-keyframes alphaTop {
	from { -moz-opacity:0; margin-top:-5%; }
	to { -moz-opacity:1; margin-top:0; }
}
@keyframes alphaTop {
	from { opacity:0; margin-top:-5%; }
	to { opacity:1; margin-top:0; }
}
/**/
@-webkit-keyframes alphaBottom {
	from { -webkit-opacity:0; margin-bottom:-5%; }
	to { -webkit-opacity:1; margin-bottom:0; }
}
@-moz-keyframes alphaBottom {
	from { -moz-opacity:0; margin-bottom:-5%; }
	to { -moz-opacity:1; margin-bottom:0; }
}
@keyframes alphaBottom {
	from { opacity:0; margin-bottom:-5%; }
	to { opacity:1; margin-bottom:0; }
}
/**/
@-webkit-keyframes alphaParpadeo {
	0%,26%,75%,80% { -webkit-opacity:1; }
	23%,30%,78%,92% { -webkit-opacity:0.5; }
}
@-moz-keyframes alphaParpadeo {
	0%,26%,75%,80% { -moz-opacity:1; }
	23%,30%,78%,92% { -moz-opacity:0.5; }
}
@keyframes alphaParpadeo {
	0%,26%,75%,80% { opacity:1; }
	23%,30%,78%,92% { opacity:0.5; }
}
/*
PRECARGA */
#loader {
	-webkit-animation: alpha 2s ease-in 0.1s infinite reverse both;
	-moz-animation: alpha 2s ease-in 0.1s infinite reverse both;
	animation: alpha 2s ease-in 0.1s infinite reverse both;
}

/*
INTRO ANIMADA
*/
.shelley,
.mariposa {
	-webkit-animation: alpha 4s ease-out 0.3s /*infinite alternate*/ both;
	-moz-animation: alpha 4s ease-out 0.3s /*infinite alternate*/ both;
	animation: alpha 4s ease-out 0.3s /*infinite alternate*/ both;
}
.cenefa {
	-webkit-animation: alphaTop 1s ease-out 3s /*infinite alternate*/ both;
	-moz-animation: alphaTop 1s ease-out 3s /*infinite alternate*/ both;
	animation: alphaTop 1s ease-out 3s /*infinite alternate*/ both;
}
.flores {
	-webkit-animation: alphaBottom 1s ease-out 3s /*infinite alternate*/ both;
	-moz-animation: alphaBottom 1s ease-out 3s /*infinite alternate*/ both;
	animation: alphaBottom 1s ease-out 3s /*infinite alternate*/ both;
}
.contenedorLogotipo,
#menu {
	-webkit-animation: alpha 1s ease-out 4s /*infinite alternate*/ both;
	-moz-animation: alpha 1s ease-out 4s /*infinite alternate*/ both;
	animation: alpha 1s ease-out 4s /*infinite alternate*/ both;
}
/*
CABECERA EN INTERIORES
*/
.cortinaIlumninada.activo,
.activo .luz, .activo .fondoIluminado {
	-webkit-animation: alphaParpadeo 6s ease-out 0.3s infinite reverse both;
	-moz-animation: alphaParpadeo 6s ease-out 0.3s infinite reverse both;
	animation: alphaParpadeo 6s ease-out 0.3s infinite reverse both;
}