.carrossel{
  position: relative;
  overflow: hidden;
  height: 720px;
}

.carrossel .itens {
  width: 20000em;
  position: absolute;
  /*animation-delay: 1s;*/
  transition: 1s;
  animation: slideOut 1s ;
  left: 0vw;
}
.carrossel .itens.tempo-0 {left: 0vw;}
.carrossel .itens.tempo-1 {left: -100vw;}
.carrossel .itens.tempo-2 {left: -200vw;}
.carrossel .itens.tempo-3 {left: -300vw;}
.carrossel .itens.tempo-4 {left: -400vw;}
.carrossel .itens.tempo-5 {left: -500vw;}
.carrossel .itens > * {
  height: 720px;
  width: 100vw;
  float: left;
  overflow: visible
}

.setas a {
  position: absolute;
  top: 50%;
  outline: 0;
  width: 37px;
  height: 84px;
  text-indent: -9999px;
  z-index: 9999;
  cursor: pointer;
  background-size: cover;
}
.setas a:first-child {
  left: 10px;
  background: url(images/controls.png) no-repeat 0 -32px;
  background: url(../img/esquerda.png) no-repeat ;
}
.setas a:last-child {
  right: 10px;
  background: url(images/controls.png) no-repeat -43px -32px;
  background: url(../img/direita.png) no-repeat ;
}

.notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
