#nav { /* toutes les listes */
	height: 287px;
    margin: 0px;
    padding: 0px;
	background-color: #FFFFFF;
}

#nav ul { /* toutes les listes */
	list-style: none;
}
	
#nav li { /* tous les items de liste */
	position : relative;
	float : left;
	width: 280px;
	height: 35px;
	margin-bottom: 1px;
	background-color: #43B1ED;
}

#nav li.last { /* tous les items de liste */
	position : relative;
	float : left;
	width: 280px;
	margin-bottom: 0px;
	background-color: #43B1ED;
}
	
	
#nav li ul { /* listes de deuxième niveau */
	position : absolute;
	top: -60px;
	left: -999em;
	margin-left : 280px;
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #FFFFFF;
}
	
#nav li ul ul { /* listes de troisième niveau et plus */
	width: 420px;
	left: -999em;
}
	
#nav li a {
	padding-top: 11px;
	padding-left: 15px;
	background-color: #43B1ED;
	display : block;
	color : #FFFFFF;
	font-size: 0.83em;
	text-decoration : none;
	text-transform: uppercase;
}

#nav li a:hover {
	height: 35px;
	background-color: #EFB729;
	color : #FFFFFF;
}
	
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}
	
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* listes imbriquées sous les items de listes survolés */
	left: auto;
}

#nav li ul ul a {
	width: 420px;
	height: 35px;
}

#nav li ul ul a:hover {
	height: 35px;
	background-color: #EFB729;
}
