.menu {
	position:relative;
 }

.menuContent {
 }



.menuContent nav{
	z-index:1000;
	position:absolute;
	top: 54px;
	left: 280px;
	height: 42px;
	font-size:1em;
	}	

#menu{
	width: 100%;
    margin: 0 auto;
    padding:0;
    list-style: none;
}

#menu >li{
	float: left;
    padding: 0;
	position: relative;
	}

#menu li:last-child{
	border: none;
}


#menu a{
	text-transform:uppercase;
    cursor:pointer;
    float: left;
    height: 51px;
    line-height:51px;
	padding: 0 15px;
    color: #999;
	color: #FFFFFF;
	text-align: center;
    text-decoration: none;
    text-shadow: 0 2px 1px rgba(0,0,0,0.5);
      -webkit-transition: all 0.5s;  
	-moz-transition: all 0.5s; 
	transition:all 0.5s;
}

#menu >li:hover > a{
	background-color:rgba(0,0,0,0.2);
}

*html > #menu li a:hover{ /* IE6 */
	background-color:rgba(0,0,0,0.2);
}

#menu li:hover > ul{
	display: block;
}


/* Sous-menu */

#menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 99999;
    background-color: #639d21;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;}

#menu ul li{
    float: none;
    margin: 0;
    padding: 0;
    display: block;
    border-bottom:1px solid rgba(255,255,255,0.2);
   	background-color:rgba(0,0,0,0.2);
   }

#menu ul li:last-child{
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border:none;
}

#menu ul a{
    padding: 10px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
    color:#91c027;
    -webkit-transition: all 0.3s;  
	-moz-transition: all 0.3s; 
	transition:all 0.3s;
	}

*html #menu ul a{ /* IE6 */
	height: 10px;
    width: 150px;
}

*:first-child+html #menu ul a{ /* IE7 */
	height: 10px;
    width: 150px;
}

#menu ul a:hover{
	color:#FFFFFF;
	text-shadow: 0 1px 5px #000;
}


#menu ul li:last-child a{
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

/* Rétablissement du flottement */
#menu:after{
	visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

* html #menu             { zoom: 1; } /* IE6 */
*:first-child+html #menu { zoom: 1; } /* IE7 */




