* {
  margin: 0;
  padding: 0;
}

body { 
  background: ##FFFFFF;
}

/*CONTAINER*/
.container {
  position: relative;
  overflow: hidden;
  margin: 100px auto;
  width: 645px;
}

.container img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -60;
}

.container li img {
  position: absolute;
  top: 0;
  left: 645px;
  z-index: -50;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

/*UL*/
ul {
  width: 645px;
  height: 390px;
  list-style: none;
}

li a
{
  z-index: 1;
  display: block;
  padding-left: 0px;
  width: 50px;
  height: 15px;
  background: transparent;
  color: #444;
  text-decoration: none;
  font-size: 60%;
  font-style: italic;
  font-weight: bold;
  font-family: "Comic Sans MS", cursive, sans-serif;	
}

li:nth-child(1) 
{
  padding-top: 350px;
}

li a:hover 
{
  
}

li a:hover + img 
{
  left: 0px;
}