.entete{
	width: 750px;
	background-color: RGB(144,255,51);
	background: linear-gradient(lightgreen,greenyellow);					/* dégradé de couleur de fond d'écran */

	padding: 5px 0px;
}


.corps{
	width: 750px;
	background-color: RGB(204,255,255);
	background: linear-gradient(lightblue,greenyellow);					/* dégradé de couleur de fond d'écran */
	padding: 5px 0px;
	font-family: Arial, Verdana, sans-serif;
	font-size: 14px;
}

.c100{
	width: 680px;
	margin: 20px;
}

body{
	background-attachment: scroll;
	__background-repeat: no-repeat;												/* répétion de l'image */
	background-image: url("/Documents_associatifs/2025/ArbreAffiche2025.png"); /* image de fond d'écran */
}

h1 {
	text-indent: 1rem;														/* décalage ligne du titre */
	text-shadow: 3px -3px 3px green;										/* décalage avec ombre portée */
}

a:hover {
	color: red; font-size: 20px;											/* couleur des liens si pointé */
}
p {
	text-indent: 1rem;														/* décalage 1ere ligne du paragraphe */
}

label{
	display: inline-block;
	min-width: 25%;
    max-width: 50%;
}

input[type="submit"]{
	color: RGB(200,100,0);
	border-radius: 5px;
	padding: 5px 10px;
	font-size: 14px;
	border: 2px solid RGB(200, 100,0);
}


input[type="submit"]:hover{										/* changer la couleur des boutons lorsque la souris passe dessus */
	background-color: RGB(200,100,0);
	color: #fff;
	cursor: pointer;
	box-shadow: 0px 0px 5px 0px #777;
}

input[type="reset"]{
	color: RGB(200,100,0);
	border-radius: 5px;
	padding: 5px 10px;
	font-size: 14px;
	border: 2px solid RGB(200, 100,0);
}

input[type="reset"]:hover{
	background-color: RGB(200,100,0);
	color: #fff;
	cursor: pointer;
	box-shadow: 0px 0px 5px 0px #777;
}

input:focus:hover {											/* couleur lors du focus sur un champ input */
	background-color: yellow;
}

table{
	border: 0px;
}
