/***** menu CSS *****/
@media print {
/*A l'impression on cache le menu, marche au moins pour IE, Moz et Opéra.*/
	.menu, .ssmenu {
		visibility:hidden;
	}
}

/* Menu et sous-menu */
#fond-menu {
	width: 800px;
	height: 25px;
	background-color: #4A4A4A;
	float: left;
}
#menuEnAvant { /* Sert si javascript est désactivé, pour placer le menu */
position: absolute;
!margin-left: -380px;
!padding-top: 5px;
height: 25px;
z-index: 100;
}
.menu { /* Pour placer le sous-menu au cas où le javascript est désactivé. */
	height: 25px;
	font-size:12px;
	font-weight:bold;
/* width et margin sont au cas où le javascript est désactivé. */
	width:160px;
	margin:0;
	text-align:center;
	float: left;
	z-index: 100;
}
.menuRouge { /* Pour placer le sous-menuRouge au cas où le javascript est désactivé. */
	height: 25px;
	font-size:12px;
	font-weight:bold;
/* width et margin sont au cas où le javascript est désactivé. */
	width:160px;
	margin:0;
	text-align:center;
	float: left;
	z-index: 100;
}
.ssmenu {
	background-color:#1c1c1c;
	color:#FFFFFF;
	font-size:11px;
	font-weight:bold;
	border:1px solid #EFB;
	padding:1px;
/* width et margin sont au cas où le javascript est désactivé. */
	width:160px;
	text-align:left;
	margin: 25px 0 0 -160px;
	!margin-top: 20px;
	float: left;
}

.menu span, .ssmenu span {
/* Ne pas toucher
	C'est pour cacher les ; en fin de <li>, ce qui permet aux synthèse vocales de prendre une
	pause dans l'élocution */
	display:none;
}
.menuRouge span {
/* Cacher ; sur menu rouge aussi */
	display:none;
}
.ssmenu ul, .ssmenu li {
/* Ne pas trop toucher.
	Les items (les <li>) des sous-menus, notamment pour enlever les puces des liste */
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu a, .menu a:visited {
/* Les liens qui ne sont pas sous le curseur. */
	text-decoration:none;
	color:#FFFFFF;
	font-size:12px;
	font-weight:bold;
	padding:5px 0 0 0;
/* Ne pas modifier le block */
	display:block;
/*	Un width:100% fait planter Mozilla, sans le width:100% c'est IE et Opera... La combinaison
	aucun width et height:100% marche sur tous, donc ne pas toucher ces 2 lignes */
/*	height:100%;
	margin:0px;*/
	margin:0px;
	width:100%;
	voice-family: "\"}\"";
	voice-family:inherit;
}

.menuRouge a, .menuRouge a:visited .menuRouge a:hover, .menuRouge a:focus {
/* Pour que le lien de la rubrique active soit marqué rouge */
	text-decoration:none;
	color:#FD1B14;
	font-size:12px;
	font-weight:bold;
	padding:5px 0 0 0;
/* Ne pas modifier le block */
	display:block;
/*	Un width:100% fait planter Mozilla, sans le width:100% c'est IE et Opera... La combinaison
	aucun width et height:100% marche sur tous, donc ne pas toucher ces 2 lignes */
/*	height:100%;
	margin:0px;*/
	margin:0px;
	width:100%;
	voice-family: "\"}\"";
	voice-family:inherit;
}
.ssmenu a, .ssmenu a:visited {
/* Les liens qui ne sont pas sous le curseur. */
	text-decoration:none;
	color:#FFFFFF;
	font-size:11px;
	font-weight:bold;
	padding:5px 0 0 5px;
/* Ne pas modifier le block */
	display:block;
/*	Un width:100% fait planter Mozilla, sans le width:100% c'est IE et Opera... La combinaison
	aucun width et height:100% marche sur tous, donc ne pas toucher ces 2 lignes */
/*	height:100%;
	margin:0px;*/
	margin:0px;
	width:100%;
	voice-family: "\"}\"";
	voice-family:inherit;
}
html>body .menu a, .ssmenu a, .menu a:visited, .ssmenu a:visited {
	width :auto;
}

.menu a:hover, .menu a:focus {
	height: 25px;
	color:#FD1B14;
	text-decoration:none;
}
.ssmenu ul:hover, .ssmenu a:hover, .ssmenu a:focus {
	background-color:#4A4A4A;
	color:#FD1B14;
	text-decoration:none;
}
/* Fin du menu */