@charset "utf-8";
/* CSS Document */
.outer-container { /* style div fond gris */
			z-index:100;
    		position : absolute;
			top: 0px;
    		display: table;
    		width: 100%;
    		height: 100%;
			/*background-color:rgba(192,192,192, 0.7);*/
			background-color: white;
			visibility:hidden;
			z-index: 100;
}
.inner-container-top { /* style div centre horizontale */
    		display: table-cell;
			padding : 70px;
    		vertical-align: top;
    		text-align: center;
}
.inner-container-middle { /* style div centre horizontale */
    		display: table-cell;
			padding : 70px;
    		vertical-align: middle;
    		text-align: center;
}
.centered-content { /* style div centre verticale */
    		display: inline-block;
    		padding : 10px;
			z-index:3 !important;
}