
/* Principal */
#menu{
		position:relative;
		top:0px;
		width: 100%;
        margin: 0;
		padding: 10px 0 0 0;
		list-style: none;
		z-index: 20;
		background-color:#293133;
}

#menu li{
        float: left;
        padding: 0 0 10px 0;
		position: relative;
}

#menu a{
        float: left;
        height: 25px;
        padding: 0 25px;
        color: #ffffff;
        /* text-transform: uppercase;*/
        /* font: bold 12px/25px Arial, Helvetica; */
		font-family:Arial, Helvetica, sans-serif;
		/* font-weight:bold; */
		font-size:14px;
        text-decoration: none;
        /* text-shadow: 0 1px 0 #000; */
		background-color:transparent;
}

#menu li:hover > a{
        color: #9e9e9e;
}

*html #menu li a:hover{ /* IE6 */
        color: #9e9e9e;
}

#menu li:hover > ul{
        display: block;
}

/* Sous-menu */

#menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 20;
	background-color:#293133;
	/*
	background-color:#A3CE3E;
	*/
	/*
    background: #444;
    background: -moz-linear-gradient(#444, #111);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #111),color-stop(1, #444));
    background: -webkit-linear-gradient(#444, #111);
    background: -o-linear-gradient(#444, #111);
    background: -ms-linear-gradient(#444, #111);
    background: linear-gradient(#444, #111);
    */
	-moz-border-radius: 5px;
    border-radius: 5px;
}

#menu ul li{
	z-index: 20;
    float: none;
    margin: 0;
    padding: 0;
    display: block;
	background-color:transparent;
	/*
    -moz-box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
    -webkit-box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
    box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
	*/
}

#menu ul li:last-child{
    /*
	-moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
	*/
}

#menu ul a{
    padding: 10px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
	text-align:left;
}

*html #menu ul a{ /* IE6 */
        height: 10px;
        width: 150px;
}

*:first-child+html #menu ul a{ /* IE7 */
        height: 10px;
        width: 150px;
}

#menu ul a:hover{
		background: #151515;
}

#menu ul li:first-child a{
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

#menu ul li:first-child a:after{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #3399FF;
}

#menu ul li:first-child a:hover:after{
	border-bottom-color: #000000;
}

#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 */
