html{
	min-height: 100%;
}
body{
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	justify-content: space-between;
}
header{
	float: left;
	width: 100%;
	text-align: center;
	line-height: 0;
	background:#1e2430;
}
main{
	float: left;
	width: 100%;
	margin: 0 0 auto;
	padding: 25px calc((100% - 1300px) / 2);
}
footer{
	float: left;
	width: 100%;
	padding: 10px calc((100% - 1300px) / 2);
	background:#1e2430;
}
.scroll_not #menus{
	position: fixed;
}
#menus{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background:#1e2430;
}
#menus ol{
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
}
#menus ol li{
	position: relative;
	display: inline-block;
}
#menus ol li:not(:last-of-type)::after,#menus ol#logout_menu li::before{
	content:'|';
	color:#fff;
}
#menus ol li a,#menus ol li span{
	display: inline-block;
	padding: 10px 15px;
	color:#fff;
	cursor: pointer;
	text-decoration: none;
	text-transform: uppercase;
	transition-property: background;
}
#menus ol ol li:not(:last-of-type)::after,#menus ol ol#logout_menu li::before{
    display: none;
}
#menus ol ol li li{
    width: 100%;
}
#menus ol li a:hover,#menus ol li span:hover,#menus ol li:hover span,#menus ol li a.menuOn,#menus ol li span.menuOn{
	background:#d41f28;
}
#menus ol li ol{
	position: absolute;
	text-align: left;
	visibility: hidden;
    height: auto;
	opacity: 0;
	background:#d41f28;
	transition-property: opacity;
}
#menus ol li:hover ol{
	visibility: visible;
	opacity: 1;
}
#menus ol li ol li a,#menus ol li ol li span{
	white-space: nowrap;
    width: 100%;
}
#menus ol li ol li a:hover,#menus ol li ol li span:hover,#menus ol li ol li a.menuOn,#menus ol li ol li span.menuOn{
	background:rgba(var(--rgb),0.5);
}
#menus_footer{
	float: left;
	width: 100%;
}
#menus_footer ol{
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
}
#menus_footer ol li{
	display: inline-block;
}
#menus_footer ol li:not(:first-of-type)::before{
	content:'|';
	color:#fff;
}
#menus_footer ol li a,#menus_footer ol li span{
	display: inline-block;
	padding: 5px 15px;
	color:#fff;
	text-decoration: none;
}
header #btn_menu{
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 999;
	width:50px;
	padding:2px 5px;
	border:none;
	cursor: pointer;
	text-align: center;
	background:#1e2430;
	border-radius: 5px;
	box-shadow: 0 0 3px rgba(0,0,0,0.5);
	visibility: hidden;
	opacity: 0;
	transition-property: opacity;
}
header #btn_menu svg{
	flex: 0 0 40px;
	width:40px;
	height: 40px;
	fill:#fff;
	transition-property: fill;
}
header #btn_menu:active svg{
	fill:#d41f28;
}
#btn_menu path{
	transition-property: transform;
}
#btn_menu.menu_on path.barre-menu-milieu{
	transform: translate(100%,0)
}
#btn_menu path.barre-menu-haut{
	transform-origin: 79px 176px;
}
#btn_menu.menu_on path.barre-menu-haut{
	transform: rotate(45deg);
}
#btn_menu path.barre-menu-bas{
	transform-origin:61px 314px;
}
#btn_menu.menu_on path.barre-menu-bas{
	transform: rotate(-45deg);
}