#fondo{
	
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat; opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 76s linear infinite ;
    -moz-animation: imageAnimation 76s linear infinite ;
    -o-animation: imageAnimation 76s linear infinite ;
    -ms-animation: imageAnimation 76s linear infinite ;
    animation: imageAnimation 76s linear infinite ;
}
.cb-slideshow{
    z-index: 1000;
    position: absolute;
    bottom: 30px;
    left: 0px;
    width: 100%;
    text-align: center; opacity: 0.5;
}
.cb-slideshow {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}


/* Chrome, Safari, Opera */ 
@-webkit-keyframes imageAnimation { 
	0% { opacity: 0;
	    -webkit-animation-timing-function: ease-in;
	}
	5% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
	}  
	60% {
	    opacity: 1;
	    -webkit-transform: scale(1.4); 
	}

	80% { opacity: 1 }
	100% { -webkit-transform: scale(1.2);
	opacity: 0 }
}

/* Chrome, Safari, Opera */ 
@-moz-keyframes imageAnimation { 
	0% { opacity: 0;
	    -moz-animation-timing-function: ease-in;
	}
	5% {
	    opacity: 1;
	    -moz-transform: scale(1.05);
	    -moz-animation-timing-function: ease-out;
	}  
	60% {
	    opacity: 1;
	    -moz-transform: scale(1.4); 
	}

	80% { opacity: 1 }
	100% { -moz-transform: scale(1.2);
	opacity: 0 }
}