/* CSS Document */
ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
} /* on supprime les puces, inutiles */
li { float: left;} /* on aligne les listes sur la gauche */
#menu a {
	display: block; /* On passe les liens en éléments de type block pour leur donner des propriétés de taille */
	width: 174px;
	line-height: 25px;
	color: #215284;
	text-indent: 0px; /* On décale le texte de 40px du bord gauche */
	text-decoration: none;
	background-image: url(bkg/butt.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	font-weight: bold;
	font-variant: small-caps;
}
#menu a:hover {
	background-image: url(bkg/butt.gif);
	background-repeat: no-repeat;
	background-position: 0 -25px;
	color: #3483D1;
	font-weight: bold;
	font-variant: small-caps;
	text-decoration: none;
}
#menu a:active {
	background-image: url(bkg/butt.gif);
	background-repeat: no-repeat;
	background-position: 0 -25px;
	color: #3483D1;
	font-weight: bold;
	font-variant: small-caps;
	text-decoration: none;
}
#actif {
	background-image: url(bkg/actif.gif);
	background-repeat: no-repeat;
	background-position: left top;
	text-align: center;
	width: 174px;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 25px;
	font-variant: small-caps;
}

