.divSlides{
	/*background: url(../images/test1.jpg);*/
	background-color: #444;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	padding: 0;
}

.slideshowMe li{
	color: transparent;
}

.slideshowMe li span{
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-attachment: fixed;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 30s linear infinite 0s; 
    -webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
}

@keyframes imageAnimation { 
    0% { opacity: 0; transform: scale(0.95); animation-timing-function: ease-in; }
    8% { opacity: 1; transform: scale(1); animation-timing-function: ease-out; }
    17% { opacity: 1 }
    50% { opacity: 0 }
    100% { opacity: 0 }
}

.slideshowMe li:nth-child(1) span { 
    background-image: url(../images/test1.jpg);
}
.slideshowMe li:nth-child(2) span { 
    background-image: url(../images/test2.jpg);
    animation-delay: 9s; 
}
.slideshowMe li:nth-child(3) span { 
    background-image: url(../images/test3.jpg);
    animation-delay: 19s;
}
