@charset "UTF-8";
/* CSS Document */
/*---background slider---finance-brochure---*/

.container 
{
	width:100%;
	height:auto;
	padding-bottom:5%;
}
.spacer4 {
	width:100%;
	margin: 0 0 50px 0;
}

#slideshow {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width:100%;
  height:0;
  padding-bottom:93%;
  display: inline-block;
}
.elemnt,.elemnt1 {
position: absolute;
left: 0;
width: 100%;
background-repeat: no-repeat;
background-size: 100% auto;
height: 100%;
display: inline-block;
text-align: center;
}

.elemnt {
	animation: xfade 0s 5s infinite;
	background-image: url('../images/dtp-finance2.jpg');
	background-position: top;
}
.elemnt1 {
  animation: xfade 12s 0s infinite;
  background-image: url('../images/dtp-finance1.jpg');
  background-position: top;
  
}

@keyframes xfade{
  40% {
    opacity:1;
  }
  75% {
    opacity:0;
  }
  92% {
    opacity:0;
  }
}
@keyframes xfade1{
  30% {
    opacity:1;
  }
  60% {
    opacity:0;
  }
  92% {
    opacity:0;
  }
}
