html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}
.button {
	font-family: 'Source Sans Pro', sans-serif;
	color: #113684;
}
/************************************************/
/*					Zone Logo					*/
/************************************************/
#colLogo {
	width: 150px;
	height: 100%;
	float: left;
	text-align: center;
	background-color: #FFFFFF;
}
#divLogo {
	margin-top: 14.5%;
	left: 7.5px;
}
/************************************************/
/*				Zone Identification				*/
/************************************************/
#colIdent {
	width: 400px;
	height: 100%;
	float: left;
	background-color: #113684;
}
.divIdent {
	margin-left: 30px;
	margin-right: 30px;
}
#messageIdent {
	margin-top: 14.5%;
	color: #FFFFFF;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 17px;
	line-height: 25px;
}
#messageIdentMini {
	color: #FFFFFF;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 10px;
	font-weight: 200;
}
#saisieIdent {
}
/************************************************/
/*				Zone Illustration				*/
/************************************************/
#colImg {
	width: calc(100% - 550px);
	height: 100%;
	float: left;
	background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
	overflow: hidden;
}
#colImg IMG {
}
/************************************************/
/*		Modification pour largeur <= 750px		*/
/************************************************/
@media only screen and (max-width: 750px) {
/************************************************/
/*					Zone Logo					*/
/************************************************/
	#colLogo {
		width: 100%;
		height: 115px;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	#divLogo {
		margin-top: auto;
		margin-left: 7.5px;
		left: auto;
	}
/************************************************/
/*				Zone Identification				*/
/************************************************/
	#colIdent {
		height: calc(100% - 115px);
	}
/************************************************/
/*				Zone Illustration				*/
/************************************************/
	#colImg {
		width: calc(100% - 400px);
		height: calc(100% - 115px);
	}
}