    form{
        margin: 20px 0;
    }
    /* form input, button{ */
        /* padding: 5px; */
    /* } */
    table{
        width: 100%;
        margin-bottom: 20px;
		border-collapse: collapse;
    }
    table, th, td{
     border: 2px solid #4682B4;
	 background-color:#FFF3F3;
    }
    table th, table td{
        padding: 10px;
        text-align: left;
    }

	label {
  /* Pour etre surs que toutes les étiquettes ont meme taille et sont correctement alignées */
  display: inline-block;
  width: 150px;
  text-align: right;
  font-size: 16px;
}

input,select{
	 background-color:#FFF3F3;
  /* Pour s'assurer que tous les champs texte ont la meme police.
     Par défaut, les textarea ont une police monospace */
  font: 1em sans-serif;

  /* Pour que tous les champs texte aient la meme dimension */
  width: 300px;
  box-sizing: border-box;

  /* Pour harmoniser le look & feel des bordures des champs texte */
  border: 1px solid #999;
  border-radius: 5px;
  border: 2px solid #4682B4;
}

input[type=button]{
  padding: 15px 15px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color:#FF4500;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
  border-radius:75%;
}

input[type=button]:hover {background-color: #3e8e41}

input[type=button]:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}


input[type=submit]{
  padding: 15px 15px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color:#FF4500;
  border: none;
  border-radius: 15px;
  border-radius:75%;
  box-shadow: 0 9px #999;
}

input[type=submit]:hover {background-color: #3e8e41}

input[type=submit]:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}


input:focus,select:focus, datalist:focus
{
border-color:blue;
}

input[type=checkbox] {
 background-color:transparent;
 border:none;
 width:30px;
border: 2px solid #4682B4; 
 }
/*
div#monmenu {
	FONT-WEIGHT: bold;
	FONT-SIZE: 90%;
	FONT-FAMILY: trebuchet ms,arial,tahoma,verdana,sans-serif;
	

    height:850px;
    width: 250px; 
	background: url('degrade.jpg') no-repeat;
    background-size:100% auto;
	position: relative;
	border-radius: 150px;
    box-shadow: 0px 4px 4px #1c1a19;
   /* margin-right: 50px;

}*/

/* div#page_centrale */
/* { */
	/* /*margin-left:280px; */
	/* margin-top:-850px;*/ */
    /* border-radius: 40px; */
   /* background: url('papier.jpg')no-repeat; */
    /* position: relative; */
    /* box-shadow: 0px 4px 4px #1c1a19; */
   margin-bottom: 15px;
    /* width:1120px;  */
    /* height: 750px;   */
/* } */


a:active /* Quand le visiteur clique sur le lien */ {
background-color: #FFCC66;
}
legend {
    background-color:#FF4500;
    color: #fff;
    padding: 6px 9px;
	font-size: 12px;
	border-radius: 70%;
}


.picto-item {
  position: relative;  /*les .picto-item deviennent référents*/
  cursor: help;
  border-radius: 50%;
}

/* on génère un élément :after lors du survol et du focus :*/

.picto-item:hover:after,
.picto-item:focus:after {
  content: attr(aria-label);  /* on affiche aria-label */
  position: absolute;
  top: -2.4em;
  left: 50%;
	transform: translateX(-50%); /* on centre horizontalement  */
  z-index: 3; /* pour s'afficher au dessus des éléments en position relative */
  white-space: nowrap;  /* on interdit le retour à la ligne*/
  padding: 5px 14px;
  background: #413219;
  color: #fff;
  border-radius: 40px;
  font-size: 0.9rem;
}

/* on génère un second élément en :before pour la flèche */

[aria-label]:hover:before,
[aria-label]:focus:before {
  content: "▼";
  position: absolute;
  top: -1em;
	left: 50%;
	transform: translateX(-50%); /* on centre horizontalement  */
  font-size: 10px;
  color: #413219;
}

/* pas de contour durant le :focus */
[aria-label]:focus {
  outline: none;
}

