body{
  background-color: #000;
  list-style: none;
}
.slideshow { 
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slideshow li{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  animation: imageAnimation 40s linear infinite; 
}
.slideshow li:nth-child(1) { 
  background-image: url("../images/JaneRubin_Painting_West4thBasketball_Strick.jpg");
}
.slideshow li:nth-child(2) { 
  background-image: url("../images/W4_Strick_CopyrightJaneRubin1998_2012.jpg");
  animation-delay: 5s; 
}
.slideshow li:nth-child(3) { 
  background-image: url("../images/W4_DP_CopyrightJaneRubin1998-2012.jpg");
  animation-delay: 10s; 
}
.slideshow li:nth-child(4) { 
  background-image: url("../images/NikeProCity_JS_CopyrightJaneRubin1998-2012.jpg");
  animation-delay: 15s; 
}
.slideshow li:nth-child(6) { 
  background-image: url("../images/BasketballCity_Dunk5_CopyrightJaneRubin1998_2002.jpg");
	animation-delay: 20s; 
}
.slideshow li:nth-child(7) { 
  background-image: url("../images/BasketballCity_2Players_CopyrightJaneRubin1998-2002.jpg");
  animation-delay: 25s; 
}
.slideshow li:nth-child(8) { 
  background-image: url("../images/BasketballCity_4Players_CopyrightJaneRubin1998_2002.jpg");
  animation-delay: 30s; 
}
.slideshow li:nth-child(9) { 
  background-image: url("../images/JaneRubin_Painting_West4thBasketball_CloseUp.jpg");
  animation-delay: 35s; 
}



@keyframes imageAnimation { 
  0% { 
    opacity: 0; 
    animation-timing-function: ease-in;
  }
  3% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  7% {
    opacity: 1;
		
  }
  9% {
    opacity: 0;
  }
}

/* Older browser support - .no-cssanimations class added by modernizr */
.no-cssanimations .slideshow li {
	opacity: 1;
}