#fondMenu{
	position: fixed;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	height: 75px;
	background-color: #0d0d0d;
	color: white;
}
#logo{
	z-index:2;
	position:absolute;
	left:10px;
	top:10px;
	height:55px;
	width:auto;
	border-radius: 50%;
}

#btn_connect{
	position: absolute;
	right: 10px;
	top: 12px;
	padding: 15px;
	border: 1px solid white;
	border-radius: 3px;
	color: white;
	transition:background-color 0.5s, color 0.5s;
	-moz-transition:background-color 0.5s, color 0.5s;
	-webkit-transition:background-color 0.5s, color 0.5s;
}

#btn_connect:hover{
	background-color: white;
	color: black;
}