
/*#menu {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align:center;
}
#menu li {
	display: inline-block;
	height: 50px;
	line-height: 50px;
}
#menu li a {
	font-size: 20px;
	color: #FFF;
	font-family: "Open Sans", Sans-serif;
	padding:0 15px;
	text-transform:uppercase;
}*/
#menu{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align:center;
}

#menu li{
	display: inline-block;
	height: 50px;
	line-height: 50px;
	position:relative;
}

#menu li a{
    font-size: 20px;
	color: #FFF;
	font-family: "Open Sans", Sans-serif;
	padding:0 15px;
	text-transform:uppercase;
	text-decoration:none;
}

#menu li:hover > a{
        color: #fff;
}
		
*html #menu li a:hover{ /* IE6 */
        color: #fff;
}

#menu li:hover > ul{
        display: block;
		width:auto;
		-webkit-box-shadow: 0px 0px 5px rgba(1,85,116,0.7);
		-moz-box-shadow: 0px 0px 5px rgba(1,85,116,0.7);
		box-shadow: 0px 0px 5px rgba(1,85,116,0.7);
		-webkit-animation: pulse 1.5s infinite ease-in-out; /* Ici on utilise l'animation référencée plus haut */
		border:1px solid rgba(255,255,255,0.7);
}

#menu li:hover > ul > li{
		width:auto;
}

/* Sous-menu */

#menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
	background: #07759e;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#239ac5", endColorstr="#00648b"); /* Pour IE seulement et mode gradient à linear */
	background: -webkit-gradient(linear, left top, left bottom, from(#239ac5), to(#00648b));
	background: -webkit-linear-gradient(#239ac5, #00648b);
	background: -moz-linear-gradient(#239ac5, #00648b);
	background: -o-linear-gradient(#239ac5, #00648b);
	background: -ms-linear-gradient(#239ac5, #00648b);
	background: linear-gradient(#239ac5, #00648b);
	text-align:left;
	z-index:1000;
	border-radius:3px;
}

#menu ul li ul{
    display: none;
    position: absolute;
    top: 0px;
    left: 100%;
}

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

#menu ul li{
    float: none;
    margin: 0;
    padding: 0;
    display: block;
	height:auto;
    box-shadow: 0 1px 0 #ffffff, 0 1px 0 #ffffff;
}

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

#menu ul a{
    padding: 7px 15px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
	font-size:14px;
	font-family: "Open Sans", Sans-serif;
}

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

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

#menu ul a:hover{
        background: #fff;
		color:#034057;
		text-decoration:none;
}

/*#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: -12px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #04acec;
}


#menu ul li ul li:first-child a:after{
	display:none;
    content: '';
    position: absolute;
    left: 30px;
    top: -12px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #04acec;
}

#menu ul li:first-child a:hover:after{
    border-bottom-color: #fff;
}

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