@charset "utf-8";

/* CSS Document */

/* Code pour les Images Responsive Web Design */
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;  
}
.image_responsive{ 
	vertical-align: middle;
	display: inline-block;
	margin-left: 0px;
}

img {
	max-width: 100%;
	height: auto; 
}
img {
	-ms-interpolation-mode: bicubic; 
}
img {
	display: inline-block;
	vertical-align: middle; 
}

#div_int {	
	width: 100%;
	height: auto;
	border: 0px solid red;   /* border: 2px solid #dc3545; */
	text-decoration: none;
	border-radius: 0px;
}
#div_int_left, #div_int_right {
	border: 0px solid #09F;
    display: inline-block;
    vertical-align: top;	
}
#div_int_left {
    width: 50%;
	height: auto;
	margin-top: 0px;
	margin-left: 2%;
	margin-right: 0%;	
	border: 0px solid blue;	
	padding: 5px;
	background-color: #;
}
#div_int_right {
    width: 44%;
	height: auto;
	margin-top: 0px;
	margin-left: 2%;
	margin-right: 0%;
	text-align: right;	
	border: 0px solid orange;	
	padding: 5px;
	background-color: #;
}


/* MEDIA QUERIES */

@media screen and (max-width: 480px){

	/* Section en paire (Droite + Gauche) */
	#div_int {	
		width: 100%;
		height: auto;
		border: 0px solid red;   /* border: 2px solid #dc3545; */
		text-decoration: none;
		border-radius: 0px;
	}	
	#div_int_left, #div_int_right {
		width: 100%;
		display: block;
	}
	#div_int_left {
		margin-top: 0px;
		border: 0px solid blue;
	}
	#div_int_right {
		margin-top: 0px;
		border: 0px solid orange;
	}
	
}

@media only screen and (max-width: 640px) {
	
	/* Section en paire (Droite + Gauche) */
	#div_int {	
		width: 100%;
		height: auto;
		border: 0px solid red;   /* border: 2px solid #dc3545; */
		text-decoration: none;
		border-radius: 0px;
	}	
	#div_int_left, #div_int_right {
		width: 100%;
		display: block;
	}
	#div_int_left {
		margin-top: 0px;
		border: 0px solid blue;
	}
	#div_int_right {
		margin-top: 0px;
		border: 0px solid orange;
	}	
	
}
	
	