/*************************** Entete ***************************/
#Section_Entete {
	background-color:#fff;
	height: 175px;
	min-height: 175px;
	max-height: 175px;
/*
	overflow:hidden;
*/
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#Entete {
	display:block;
	padding-top:40px;
}
#Entete h1 {
	display:none;
}
#Entete #Logo {
	display:inline-block;
	width:145px;
	height:80px;
	background-image: url('../images/Entete_Logo.png');
	background-repeat:no-repeat;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#Section_Entete.Fixed {
	background-color:#fff;
	height: 80px;
	min-height: 80px;
	max-height: 80px;
/*
	overflow:hidden;
*/
	box-shadow: 0 0 5px rgba( 20, 20, 20, 0.5);
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:999;
-webkit-transition: -webkit-transform 0ms; -webkit-transform-origin: 0px 0px; -webkit-transform: translate3d(0px, 0px, 0px);
}
#Section_Entete.Fixed::after {
	content:'';
	margin-bottom:100px;
}
#Section_Entete.Fixed #Entete {
	padding-top:10px;
}
#Section_Entete.Fixed #Entete #Logo {
	width:99px;
	height:55px;
	background-position:center;
	-webkit-background-size: cover;
	background-size: cover;
}

@media only screen and (max-width:1280px) {
	#Section_Entete {
		height: 110px;
		min-height: 110px;
		max-height: 110px;
	}
	#Section_Entete #Entete #Logo {
		width:99px;
		height:55px;
		background-position:center;
		-webkit-background-size: cover;
		background-size: cover;
	}
}
@media only screen and (max-width:980px) {
	#Section_Entete {
		height: 100px;
		min-height: 100px;
		max-height: 100px;
	}
	#Entete {
		display:block;
		padding-top:20px;
	}
}
@media only screen and (max-width:768px) {
}



