#menu_global {
	position: relative;
	width: 100%;
	clear: both;
}

#menu {
	width:100%;
}

.menu > * {
	float: left;
}

.menu > * + * {
	margin-left: 0;
}

.menu_item {
	display: block;
	position: relative;
	margin: 0;
	height: auto;
	float: left;
}

.menu_item img {
	vertical-align: middle;
}

.menu_dropdown ul {
	list-style-type: none;
}

.menu_dropdown a:link {
	text-decoration: none;
}

.menu_dropdown a:visited {
	text-decoration: none;
}

.menu_dropdown a:hover {
	text-decoration: none;
}

.menu_titre_image {
	width: var(--40px);
	height: var(--40px);
	padding: var(--10px) 0 0 0;
	text-align: center;
}

.menu_titre_texte {
	font-family: "Noto Serif", sans-serif;
	display: block;
	text-align: center;
	vertical-align: middle;
	transition: 0.3s background-color;
}

.menu_titre_texte:before {
	content: "";
	display: block;
	height: 0;
	position: absolute;
	top: var(--45px);
	left: 0;
	z-index: 101;
	transition:
		0.2s 0.2s border-top ease-out,
		0.3s border-top-color;
}

.menu_item:hover > .menu_titre_texte:before {
	border-top-width: 0;
	transition:
		0.2s border-top-width ease-in,
		0.3s border-top-color;
}

.menu_titre_texte:after {
	content: "";
	display: block;
	height: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 101;
	transition: 0.2s border-bottom ease-in;
}

.menu_item:hover > .menu_titre_texte:before {
	border-top-width: 0;
	transition:
		0.2s border-top-width ease-in,
		0.3s border-top-color;
}

.menu_item:hover > .menu_titre_texte:after {
	border-bottom-width: var(--5px);
	transition: 0.2s 0.2s border-bottom-width ease-out;
}

.menu_dropdown {
	font-size: 0.85em;
	text-align: left;
	min-width: 100%;
	padding: var(--2px) 0;
	position: absolute;
	top: var(--35px);
	left: 0px;
	z-index: 100;
	transition:
		0.5s padding,
		0.5s background;
}

.menu_dropdown:after {
	content: "";
	display: block;
	height: 0;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 101;
	transition: 0.5s border-top;
}

.menu_item:not(:hover) > .menu_dropdown {
	padding: 0;
	z-index: 99;
}

.menu_dropdown > * {
	overflow: hidden;
	background: rgba(0,0,0,0);
	white-space: nowrap;
	transition: 
		0.5s height cubic-bezier(.73,.32,.34,1.5),
		0.5s padding cubic-bezier(.73,.32,.34,1.5),
		0.5s margin cubic-bezier(.73,.32,.34,1.5),
		0.5s 0.2s color,
		0.2s background-color;
}

.menu_item:not(:hover) > .menu_dropdown > * {
	visibility: hidden;
	height: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin: 0;
	color: rgba(25,25,25,0);
	transition: 
		0.5s 0.1s height,
		0.5s 0.1s padding,
		0.5s 0.1s margin,
		0.3s color,
		0.6s visibility;
	z-index: 99;
}
