1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
   | @charset "";
.Bouton {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #FF0000;
	border: thin solid #FFFFFF;
}
.Select {
	color: #990000;
	background-color: #FFD2E9;
	font-style: normal;
}
.BoutonInverse {
	font-family: Arial, Helvetica, sans-serif;
	color: #FF0000;
	background-color: #FFFFFF;
	border: thin solid #FF0000;
	font-weight: normal;
}
.Fond {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #FF9797;
 
}
.Blanc {
	background-color: #FFFFFF;
	border: thin solid #FF0000;
	color: #000000;
}
.Cadre {
	border: thick groove #FF0000;
}
 
.Lien1 {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #FF0000;
	border: thin none #FFFFFF;
}
.Lien1:hover {
	font-family: Arial, Helvetica, sans-serif;
	color: #FF0000;
	background-color: #FFFFFF;
	border: thin none #FF0000;
}
.Lien2 {
	font-family: Arial, Helvetica, sans-serif;
	color: #FF0000;
	background-color: #FFFFFF;
	border: thin none #FF0000;
}
.Lien2:hover {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #FF0000;
	border: thin none #FFFFFF;
}
.R_B {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #FF0000;
	border: thin none #FFFFFF;
}
.B_R {
	font-family: Arial, Helvetica, sans-serif;
	color: #FF0000;
	background-color: #FFFFFF;
	border: thin none #FF0000;
}
.BoutonInverse_BLK {
	font-family: Arial, Helvetica, sans-serif;
	color: #FF0000;
	background-color: #FFFFFF;
	border: thin solid #FF0000;
	font-weight: normal;
	text-decoration: blink;
}
.Bouton_BLK {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #FF0000;
	border: thin solid #FFFFFF;
	text-decoration: blink;
}
.Bouton_B_D {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #FF0000;
	border-top-width: thin;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
}
.BoutonInverse_B_D {
	font-family: Arial, Helvetica, sans-serif;
	color: #FF0000;
	background-color: #FFFFFF;
	font-weight: normal;
	border-top-width: thin;
	border-right-width: medium;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FF0000;
	border-right-color: #FF0000;
	border-bottom-color: #FF0000;
	border-left-color: #FF0000;
}
.Bord_Rouge {
	border: medium solid #FF0000;
	background-color: #FFFFFF;
}
.Connexion {
	border: thick groove #FF0000;
	background-color: #FF0000;
	color: #FFFFFF;
} |