/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeOut { from { opacity:1; } to { opacity:0; } }
@-moz-keyframes fadeOut { from { opacity:1; } to { opacity:0; } }
@keyframes fadeOut { from { opacity:1; } to { opacity:0; } }

.fade-out {
	opacity:1;  /* make things invisible upon start */
	-webkit-animation:fadeOut ease-out 1;  /* call our keyframe named fadeOut, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeOut ease-out 1;
	animation:fadeOut ease-out 1;

	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;

	-webkit-animation-delay: 3s;
	-moz-animation-delay: 3s;
	animation-delay: 3s;
}

.container728 {
	height: 90px;
	width: 728px;
	position: relative;
}

.container300 {
	height: 250px;
	width: 300px;
	position: relative;
}

.container160 {
	height: 600px;
	width: 160px;
	position: relative;
}

.box728{
	z-index: 2;
	height: 90px;
	width: 728px;
	background-color: #d9d7db;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

.box300{
	z-index: 2;
	height: 250px;
	width: 300px;
	background-color: #d9d7db;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

.box160{
	z-index: 2;
	height: 600px;
	width: 160px;
	background-color: #d9d7db;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

.atise-background {
	z-index: 1;
	position: relative;
}

.ad {
	z-index: 3;
	position: absolute;
	top: 0;
	left: 0;
}