.item  {opacity:0; filter: alpha(opacity=0); transition: all 1s 0s ease-in-out;}
.item.item_up {
  -webkit-transform: translate(0px, 70px);
  -ms-transform: translate(0px, 70px);
  transform: translate(0px, 70px);
}
.item.item_down {
  -webkit-transform: translate(0px, -40px);
  -ms-transform: translate(0px, -40px);
  transform: translate(0px, -40px);
}
.item.item_left {
  -webkit-transform: translate(400px, 0px);/* transition: all 2s 0s cubic-bezier(0.42, 0, 0, 1.01)*/;
  -ms-transform: translate(400px, 0px);/*transition: all 2s 0s cubic-bezier(0.42, 0, 0, 1.01)*/;
  transform: translate(400px, 0px); /*transition: all 2s 0s cubic-bezier(0.42, 0, 0, 1.01)*/;
}
.item.item_right {
  -webkit-transform: translate(-400px, 0px);
  -ms-transform: translate(-400px, 0px);
  transform: translate(-400px, 0px);
}


.on .item, .active .item, .item.active {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  transform: translateX(0px) translateY(0px);
}
.on .item.nth-child-1, .active .item.nth-child-1, .item.nth-child-1.active {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.on .item.nth-child-2, .active .item.nth-child-2, .item.nth-child-2.active {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.on .item.nth-child-3, .active .item.nth-child-3, .item.nth-child-3.active {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.on .item.nth-child-4, .active .item.nth-child-4, .item.nth-child-4.active {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.on .item.nth-child-5, .active .item.nth-child-5, .item.nth-child-5.active {
  -webkit- transition-delay: 1s;
  transition-delay: 1s;
}
.on .item.nth-child-6, .active .item.nth-child-6, .item.nth-child-6.active {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.on .item.nth-child-7, .active .item.nth-child-7, .item.nth-child-7.active {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.on .item.nth-child-8, .active .item.nth-child-8, .item.nth-child-8.active {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}