@charset "utf-8";
/* CSS Document */
.animated {
 -webkit-animation-duration: 3s;
 animation-duration: 3s;
	-webkit-animation-iteration-count: 50;
 animation-iteration-count: 50;
 -webkit-animation-fill-mode: both;
 animation-fill-mode: both;
}

.animate2 {
 -webkit-animation-duration: 3s;
 animation-duration: 3s;
	-webkit-animation-iteration-count: 50;
 animation-iteration-count: 1;
 -webkit-animation-fill-mode: both;
 animation-fill-mode: both;
}

@-webkit-keyframes flash {
 0%, 50%, 100% {
 opacity: 1;
 }
25%, 75% {
 opacity: 0;
 }
}
@keyframes flash {
 0%, 50%, 100% {
 opacity: 1;
 }
25%, 75% {
 opacity: 0;
 }
}
.flash {
 -webkit-animation-name: flash;
 animation-name: flash;
}

.derecha {
    position: relative;
    margin-left: 50%;
    float:inherit;
    margin-right: auto;
	
}
