nav{
	position: -webkit-sticky;
    position: sticky;
    top: 44px;
	display:inline-block;
	width:100%;
	z-index:5;
}

.Logo{
	    width: 280px;
    position: absolute;
    z-index: 10;
    top: -9px;
	left:3%;
	transition:all 0.5s;
}
.Logo img{
	height:80px;
	transition:all 0.5s;
}
.Logo img:first-child{
	height:40px;
	transition:all 0.5s;
}
.Logo img:last-child{
	margin-left: 40px;
	transition:all 0.5s;
}
.Logo img.Icone{
	    position: absolute;
    top: 21px;
}

#menuToggle
{
  display: block;
  position: relative;
  top: 57px;
  right: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #595959;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  right: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #000;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu{
  position: relative;
    right: 0;
	top:0px;
    width: 100%;
	text-align:right;
   margin: 0;
        padding: 5px 0;
    background: #FFF;
	height:52px;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
     border-bottom: 1px solid rgba(109, 118, 109, 0);
}
#menu ul{
	position:sticky;
	display:table;
	right:3%;
	float:right;
	margin:0 auto;
	padding:0px;
}
#menu li{
  font-size: 1.2em;
    list-style: none;
    display: table-cell;
	vertical-align:bottom;
    padding: 10px 15px;
    width: auto;
    text-transform: none;
}

#menu li:nth-child(2){
	/*padding-left:50px;*/
}

#menu li:last-child{
	margin-right:2%;
	padding:10px 0;
	padding-left:100px;
	transition:all 0.5s;
}

#menu li.active a{
	color: #6d766a;
}
/*#menu li.active div{
	border-bottom:1px solid #000;
}*/
#menu li.active div.Bottom{
	height:1px;
	background-color:#6d766a;
	width:40%;
	transition:all 0.5s;
}
#menu div.Bottom{
	height:1px;
	background-color:#6d766a;
	width:0px;
	margin:0 auto;
	transition:all 0.5s;
}
#menu li a {
	font-size:1em;
	color: #6d766a;
    text-decoration: none;
    font-weight: 200;
	font-size:0.9em;
	transition:all 0.25s;
}

#menu li:hover div.Bottom{
	width:20%;
	transition:all 0.5s;
}
/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}