.imageholder {
	left: 0px;
	top: 0px;
	position: absolute;
	display: table;
	height: 100%;
	width: 100%;
	vertical-align: middle;
	text-align: center;
}
.inner {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	position: relative;
}
.inner img {
	margin: auto;
/*  max-height: 80%; */
/*  max-width: 80%; */
}

.inner{
    animation: 1.5s ease 0s normal forwards 1 fadein;
}

@keyframes fadein{
    0% { opacity:0; }
/*    66% { opacity:0.5; } */
    100% { opacity:1; }
	animation-iteration-count: 1; 
}
