/* styles pour animation SVG page accueil - FDL 2012 rev 2022 myGradient */

	.menuButtonOn {
		stroke: #BD0202;
		fill: white;
		stroke-width: 1px;  
		animation: RedToWhite 1s;
	}
	.menuButtonOff {
		stroke: #BD0202;
		fill: #BD0202; 
		fill: url(#myGradient); 
	} 
	.menuTextOn {
		fill: #CF0202;
		font-size: 15px;
		font-weight: bold;
		font-family: arial;
		text-anchor: middle;  
		animation: WhiteToRed 1s; 
	}
	.menuTextOff {
		fill: white;
		font-size: 15px;
		font-weight: bold;
		font-family: arial;
		text-anchor: middle; 
	}
	.thumbText {
		font-family: arial; 
	}
	.themeText {
		fill: #857763;
		font-family: arial; 
	}
	.themeText:hover {
		fill: #BD0202;
		font-family: arial; 
	}			
	.obj a:hover {
		text-decoration: none; 
	}
	@keyframes RedToWhite {
		from {fill: #BD0202;}
		to {fill: white;}
	}
	@keyframes WhiteToRed {
		from {fill: white;}
		to {fill: #CF0202;}
	}