<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/***** typage de base *****/

.paragraph {
	font-size: medium;
	font-weight: bold;
	color: #666666;
}

.paragraph2 {
	font-size: large;
	font-weight: bold;
	color: #666666;
}
.titre {
	font-size: x-large;
	font-weight: bold;
	color: #666666;
	text-decoration: underline;
}
.programme {
	font-size: medium;
	font-weight: 900;
	color: #0000CC;
	background-repeat: no-repeat;
}
.objet {
	color: #FF0000;
}
.definition {
	font-weight: bold;
	color: #009900;
}
.infos {
	font-weight: bold;
	color: #000099;
	text-decoration: none;
}
.version {
	font-weight: bold;
}
.parole {
	font-style: italic;
}


/***** la gestion des menus *****/

.menu, .ssmenu {
/* Il est important de laisser une largeur, au cas où le Javascript soit désactivé.
margin aussi */
	background-color:#AA8922;
	font-size:12px;
	font-weight:bold;
	border:1px solid #EFB;
	color:white;
	width:150px;
	padding:2px;
	margin:1em;
}
.menu {
	text-align:center;
	background:#789ABC;
	border-color:#004455;
	FILTER: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#ABCDEF,endColorStr=#789ABC);
}
.ssmenu {
	background:#004455;
	border-color:#ABCDEF;
/* aller pour faire joli sur IE, un petit effet de dégradé !
	Pour voir d'autres effets :
	http://msdn.microsoft.com/workshop/samples/author/dhtml/DXTidemo/DXTidemo.htm
	
	Par exemple :
	transparence à 25% = opacité à 75%:
		FILTER: progid:DXImageTransform.Microsoft.Alpha( style=0,opacity=75);
	"Glow" :
		FILTER: progid:DXImageTransform.Microsoft.Glow(color=#ffdead,strength=5);
	Ombre en bas à droite, 5 px :
		FILTER: progid:DXImageTransform.Microsoft.Shadow(direction=135,color=#ff8c00,strength=5);
	*/
	FILTER: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#789ABC,endColorStr=#004455);
}

.menu span, .ssmenu span {
/* pour cacher les ; en fin de &lt;li&gt;, ce qui permet aux synthèse vocales de prendre une
	pause dans l'élocution */
	display:none;
}

.ssmenu ul, .ssmenu li {
/* Les items (les &lt;li&gt;) 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:#FEB;
	padding:2px 0px;
	display:block;
	/*width:100%;*/
	height:100%;
	margin:0px;
}

.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:#BEF;
	color:#034;
	text-decoration:none;
	FILTER: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#2289AA,endColorStr=#ABCDEF);
}

/*
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".
*/</pre></body></html>