/***** 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, .ssmenu {
/* Il est important de laisser une largeur, au cas où le Javascript soit désactivé.
margin aussi */
	background-color: #B4B2FF;
	background-image: url(../image/fond_menu.png);
	background-repeat: repeat-x;
	font-size: 12px;
	line-height: 20px;
	font-weight: bold;
	border: 1px solid #004455;
	color: #FFE334;
	width: 150px;
	padding: 1px;
	margin: 1em;
}
.menu {
	text-align: center;
	background: #B4B2FF url(../image/fond_menu.png) repeat-x;
	border-color: #004455;
}
.ssmenu {
	background:#B4B2FF ;
	opacity: 0.75;
	border-color:#535353;
}
ul.ssmenu >li {}
.menu span, .ssmenu span {
/* pour cacher les ; en fin de <li>, ce qui permet aux synthèse vocales de prendre une
pause dans l'élocution */
	display:none;
}

.ssmenu ul, .ssmenu li {
/* Les items (les <li>) des sous-menus, notamment pour enlever les puces des liste */
	padding:0;
	margin:0;
	list-style-type:none;
}

.menu a, .ssmenu a, .menu a:visited, .ssmenu a:visited {
/* Les liens qui ne sont pas sous le curseur.
	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 */
	font-family:MS Sans Serif, arial, sans-serif, Verdana;
	text-decoration:none;
	color:#123;
	padding:2px 1px;
/* 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:inherit;
}
	html>body .menu a, html>body .menu a:visited, html>body .menu a:hover, html>body .menu a:active,
html>body .ssmenu a, html>body .ssmenu a:visited, html>body .ssmenu a:hover, html>body .ssmenu a:active {
	width :auto;
}

.ssmenu ul:hover, .ssmenu a:hover, .ssmenu a:focus, .menu a:hover, .menu a:focus {
/* Les liens sous le curseur.
On change les couleurs du texte et de fond, et on enlève le soulignement.
*/
	background-color:#789ABC ;
	background: url(../image/fond_menu-b.png) repeat;
	color:#034;
	text-decoration:none;
}
form.menux {
/* Les liens qui ne sont pas sous le curseur.
	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 */
	background-color: #FFDBB2;
	background-image: url(../image/logo-fd.png);
	background-position: center;
	background-repeat: no-repeat;
	font-family:MS Sans Serif, arial, sans-serif, Verdana;
	font-size: 12px;
	font-weight: bold;
	border: 1px solid #004455;
	text-align: center;
	text-decoration:none;
	color:#045;
	padding:2px 1px;
	font-weight: bold;
	border: 1px solid #004455;
	width: 150px;
	margin: 1em;
/* 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:inherit;
}
form.menux .c1 {color: #045; font-weight:700; font-size:14px;}

form.menux .c2 {color: #045; font: 10px normal Verdana, Geneva, Arial, Helvetica, sans-serif;	text-align: center; }
/*
	Bref... pour résumer, ce qu'il y a à modifier à la base, c'est :
- couleurs, police, bordure et largeur des menu et ssmenu.
- l'effet spécial IE pour les ssmenu
- police et couleurs des liens "non survolés" et "survolés".
*/
