div.invisible{
	position: fixed;
	width:1280px;
	height:720px;
	overflow:hidden;
	left:0;
	right:0;
	top:0;
	margin:0 auto;
	z-index:55;
	pointer-events:none;
}


.invisible a{
	display:block;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;

	opacity:0.8;
	translate:300% 0;
	pointer-events:auto;

	top:300px;
	width:800px;
	height:100px;
/*
	animation:invisiblemove 20s linear infinite,invisiblewave 8s -2s infinite;
*/

/*	background:#0ff7;
	translate: 0%
*/
}


.invisible a.inv1{
	top:200px;
	width:600px;

/*	translate:-50% 0;*/

	animation:invisiblemove 20s linear infinite,invisiblewave 8s infinite;
}
.invisible a.inv2{
	top:400px;
	width:400px;

/*	translate:50% 0;*/

	animation:invisiblemove 20s 4s linear infinite,invisiblewave 8s 4s infinite;
}



.invisible a img{
	position:absolute;
	top:0;
	left:0;
	pointer-events:none;
}

.invisible a.inv1 img{
	top:-200px;
}
.invisible a.inv2 img{
	top:-100px;
}


@keyframes invisiblemove {
	0%    {translate: 220% 0;}
	100%  {translate:-220% 0;}
}


@keyframes invisiblewave {
	0%    {margin-top: 0%;}
	50%   {margin-top: 5%;}
	100%  {margin-top: 0%;}
}
