    .semaine {
		font-size: inherit;		/* rajouté 2025.01.01 */
	}
	
	/* Table des parcours; alternance des couleurs d'une ligne à l'autre */	
	.mois tr{	background: #b8d1f3;	}                 /* provide some minimal visual accomodation for IE8 and below */
	.mois tr:nth-child(odd){ 	background: #b8d1f3;	}  /*  Define the background color for all the ODD background rows  */
	.mois tr:nth-child(even){	background: #dae5f4;   } /*  Define the background color for all the EVEN background rows  */
	.mois { text-align: center;}
	.mois { font-size: inherit;	}	/* rajouté 2025.02.14 */
	
	.tabs {
      position: relative;   
      min-height: 1200px; /* This part sucks */
      clear: both;
      margin: 25px 0;

    }
    .tab {
      float: left;
    }
    .tab label {
      background: #fff; 
      padding: 10px; 
      border: 1px solid #ccc; 
      margin-left: -1px; 
      position: relative;
      left: 1px; 
    }
    .tab [type=radio] {
      display: none;   
    }
    .content {
      position: absolute;
      top: 25px;
      left: 0;
      background: #fff;
      right: 0;
      bottom: 0;
      padding: 20px;
      border: 1px solid #ccc; 
    }
    [type=radio]:checked ~ label {
      background: grey;
      border-top: 3px solid #c00;
	  margin-top: -3px;
	  font-weight: bold;
      z-index: 2;
    }
    [type=radio]:checked ~ label ~ .content {
      z-index: 1;
    }