div.outer {
	position: absolute;
	padding: 0px;
	margin: 0px;
    left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	
	display: -ms-flexbox;
	display: -webkit-flexbox;
	display: flex;
	
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;

    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
	
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}