.invisibl {
display:none;
}















.entete {
   width : 100%;
   height: 25em;   
}



.entete.entete_course {
   position: relative;
   left: 10em;
   top: 1em;
   text-align : center;
   color : red;
   font-size  : 8px;
   
   width : 500px;
   height : 50px;
 }
 
 .entete.entete_course.titre{
    font-size: 2em;
 }
 .entete.entete_course.intitule{
    font-size: 3em;
 }
 .entete.entete_course.distance{
    font-size: 3em;
    color:darkgreen;
 }






.Table_classement {
   position: relative;
   top:20px;
   margin-top: 1em;
   font-size: 1em;
   width: 100%;
   border-collapse: collapse;
     
}


table {
   border: 1px solid black;
   border-collapse: collapse;
   
   
   
}



th {
  
   color: yellow;
   background-color: red;
  
  
  
}






.Table_classement table tbody tr {
   border: 1px solid black;
    

}



.Table_classement table tbody tr:nth-child(even) {
   
   background-color: lightblue;
   

}

.Table_classement table tbody tr:nth-child(odd) {
   
   background-color: white;
   

}





   


.nombre {
   text-align: right;
   width: 2em;
  
   
}



.depart_arrivee{
   font-size: 0.7em;
   width:10em;
}

.temps {
   text-align: center;
   width: 5em;
   
   
}

.nom_prenom {
   text-align: left;
   padding-left: 0.7em;
   
   width: 10em;
   
}

.club {
   text-align: left;
   padding-left: 0.7em;
   font-size: 0.7em;
   width: 10em;
   
}

.tooltip {
   position: relative;
   display: inline-block;
   border-bottom: 1px dotted black;
 }
 
 .tooltip .tooltiptext {
   visibility: hidden;
   width: 200px;
   background-color: #555;
   color: #fff;
   text-align: center;
   border-radius: 6px;
   padding: 5px 0;
   position: absolute;
   z-index: 1;
   bottom: 125%;
   left: 50%;
   margin-left: -60px;
   opacity: 0;
   transition: opacity 0.3s;
 }
 
 .tooltip .tooltiptext::after {
   content: "";
   position: absolute;
   top: 100%;
   left: 50%;
   margin-left: -5px;
   border-width: 5px;
   border-style: solid;
   border-color: #555 transparent transparent transparent;
 }
 
 .tooltip:hover .tooltiptext {
   visibility: visible;
   opacity: 1;
 }