.menu{
	width: 100%;
	height: 150px;
	position: fixed;
	top: 0px;
	left: 0;
    z-index: 1000000000;
}
#photoprofil{
	position: relative;
	z-index: 100;
	width: 40px;
	height: 40px;
}
#photoprofil img{
	border: 5px solid #621a4a;
	width: 100%;
}
#menu_barre{
	width: 100%;
	background: #621a4a;
	position: fixed; 
	z-index: 5;
	top: 0px;
	height: 50px;
	overflow: hidden;
	-webkit-transition: all 600ms linear;
	-moz-transition:    all 600ms linear;
	-ms-transition:     all 600ms linear;
	-o-transition:      all 600ms linear;
	transition:         all 600ms linear;
}
#menu_content{
	margin-left: 22%;
	width: calc(100% - 70px);
	margin-left: 70px;
	margin-top: 50px;
	color: white;
	padding-bottom: 50px;
}
#menu_content #hamburgeur{
	position: absolute;
	top: 6px;
	right: 6px;
	width: 35px;
	height: 35px;
	border-radius: 5px;
	border: 2.5px solid white;
	background: url('../images/hamburger.png');
	background-size: cover;
	cursor: pointer;
}
#menu_content span{
	display: block;
	width: 80%;
	text-align: center;
	height: 40px;
	padding: 10px;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
	font-size: 1em;
}
#menu_content span:hover{
	background: rgba(0,0,0,0.1);
}

#menu_content span span{
	display: block;
	margin-left: -10px;
	height: 0;
	padding: 0;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 0.9em;
	overflow: hidden;
}
#menu_content span span:hover{
	background-color: #4f0938;
}
#menu_content .first{
	margin-top: 10px;
}
::-webkit-scrollbar { 
    display: none;
}