/* -------------- POUR TOUTES LES PAGES --------------- */
body {
  padding: 0px;
  background-color: hsl(222, 8%, 25%);
  color: hsl(222, 8%, 95%);
  font-size: calc(12pt + .4vw);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  background-image: url('../images/background.jpg');
  background-repeat: repeat-y;
  background-position: center;  
  }
body td {
  font-family: Arial, Helvetica, sans-serif;
}
body th {
  font-family: Arial, Helvetica, sans-serif;
}

hr { border: 0; margin-top: 20px; margin-bottom: 20px; height: 4px; left: 5%; right: 5%; width: 90%; background-image: linear-gradient(to right, transparent, rgb(255,255,255), transparent);}

/* ----- GLOBAL DEVRAIT ÊTRE SUR CHAQUE PAGE. POUR DÉTERMINER LA LARGEUR ET L'ESPACE SOUS LE MENU ----- */
table.global {
	width:99%;
	max-width:1800px;
	background-color: hsl(222, 6%, 50%);
	border-left:solid 0px #808080;
	border-right:solid 0px #808080;
	margin-left: auto; 
    margin-right: auto;
 	padding-right: 1%;
    padding-left: 1%;
	border-spacing:0px;
	border-collapse:collapse;
	font-weight: 400;
 	line-height: 120%;
}
table.global th {  
  padding-bottom: calc(20px + .2vw);
  padding-right: 0%;
  padding-left: 0%;
  text-transform: uppercase;
  color: hsl(50, 90%, 90%);
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.8);
  font-weight: 700;
  line-height: 130%;
}
table.global td {
  font-size: calc(8pt + .5vw);
  padding-right: 20px;
  padding-left: 20px;
  line-height: 150%;
}
@media only screen and (max-width: 374px) 							{table.global th { font-size: 18px; padding-top: 40px; }}
@media only screen and (min-width: 375px) and (max-width: 576px) 	{table.global th { font-size: 20px; padding-top: 45px; }}
@media only screen and (min-width: 576px) and (max-width: 767px) 	{table.global th { font-size: 24px; padding-top: 50px; }}
@media only screen and (min-width: 768px) and (max-width: 991px) 	{table.global th { font-size: 28px; padding-top: 55px; }} 
@media only screen and (min-width: 992px) and (max-width: 1199px) 	{table.global th { font-size: 32px; padding-top: 60px; }} 
@media only screen and (min-width: 1200px) 							{table.global th { font-size: 36px; padding-top: 65px; }}

table.globaltdf {
	background-color: #006E0B;
}
table.globalcp9 {
	background-image: linear-gradient(to bottom, #0000FF, #FF0000);
	padding-right: 0%;
    padding-left: 0%;
}
table.globalcp9 td {
  font-size: calc(8pt + .5vw);
  padding-right: 2px;
  padding-left: 2px;
  line-height: 130%;
}

/* -------------- MENU --------------- */

.navbar {

   background-image: linear-gradient(90deg, rgba(180,50,170,1), rgba(0,50,220,1));
   left: 0;
   top: 0;
   width:100%;
   position: fixed;
   z-index: 99;
   overflow:visible!important;
   margin: 0 auto; 

}
.navbar a {
  float: left;
  color: white;
  text-align: middle;
  text-decoration: none;
  z-index: 99;
  overflow:visible!important
}
.dropdown {
  float: left;
  overflow: hidden;
}
.dropdown .dropbtn {
  border: none;
  outline: none;
  color: white;
  background-color: #111188;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: rgba(200, 100, 200, 0);
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #eeeee9;
  min-width: 100px;
  box-shadow: 0px 8pt 16pt 0pt rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  float: none;
  color: black;
  text-decoration: none;
  display: block;
  text-align: left;
  font-weight: 500;
}
.dropdown-content a:hover {
  background-color: #ddd;
}
.dropdown:hover .dropdown-content {
  display: block;
}

@media only screen and (max-width: 374px) {
  .dropdown .dropbtn {
    font-size:14px !important;
    padding: 8px 5px;
  }
  .navbar a {
    font-size:14px !important;
    padding: 8px 4px 2px 8px; /* -- HOME et FACEBOOK pour MON CELLULAIRE -- */
  }
  .dropdown-content a {
    font-size:12px !important;
    padding: 10px 3px;  /* -- Padding des menus déroulants -- */
  }  
}
@media only screen and (min-width: 375px) and (max-width: 576px) {
  .dropdown .dropbtn {
    font-size:14px !important;
    padding: 8px 5px;
  }
  .navbar a {
    font-size:14px !important;
    padding: 8px 4px 2px 8px; /* -- HOME et FACEBOOK pour IPHONE 8 -- */
  }
  .dropdown-content a {
    font-size:12px !important;
    padding: 10px 8px;
  }  
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .dropdown .dropbtn {
    font-size:16px !important;
    padding: 8px 5px;
  }
  .navbar a {
    font-size:16px !important;
    padding: 6px 4px 6px 6px; /* -- HOME et FACEBOOK pour PETITE TABLETTE -- */
  }
  .dropdown-content a {
    font-size:14px !important;
    padding: 12px 8px;
  }  
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .dropdown .dropbtn {
    font-size:16px !important;
    padding: 8px 8px;
  }
  .navbar a {
    font-size:16px !important;
    padding: 6px 4px 6px 6px;
  }
  .dropdown-content a {
    font-size:14px !important;
    padding: 12px 8px;
  }  
} 
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .dropdown .dropbtn {
    font-size:20px !important;
    padding: 8px 10px;
  }
  .navbar a {
    font-size:20px !important;
    padding: 6px 4px 4px 8px;
  }
  .dropdown-content a {
    font-size:16px !important;
    padding: 16px 8px;
  }  
} 
@media only screen and (min-width: 1200px) {
  .dropdown .dropbtn {
    font-size:24px !important;
    padding: 8px 12px;
  }
  .navbar a {
    font-size:24px !important;
    padding: 6px 4px 4px 12px;
  }
  .dropdown-content a {
    font-size:20px !important;
    padding: 16px 6px;
  }  
}


/* -------------- PIED --------------- */

body {
  margin:0;
  text-decoration: none;
}
ul.p {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: hsl(222, 8%, 35%);
  position: fixed;
  bottom: 0;
  width: 100%;
}
li.p {
  float: right;
}
li.p {
  display: block;
  font-size: calc(12px + .3vw);
  font-weight: 600;
  color: #ceccca;
  text-align: center;
  padding: 8px 6px; /* HAUTEUR SUR LARGEUR */
}
li.p a:hover:not(.active) {
  color: #ffffbb;
  text-shadow: 0px 0px 10pt rgba(0, 0, 0, 1) ;
}
li.p a:visited {
  color: #ceccca;
}
ul.a{
  list-style-type: list-style-type: circle;
}
ol.b{
  list-style-type: number;
  color: #000000;
  line-height: 1.2;
  width: 100%;
  margin-left: 0em;
}
a:link {
  text-decoration: none;
}
/* --------------------------- TABLEAUX AVEC COULEURS ALTERNATIVES PAR DÉFAUT --------------------------------------- */
table.alt {
  border-collapse: collapse;
  background-color: #F3F3F3;
  color: #000000;
  font-weight: 500;
  line-height: normal;
  margin-left: auto; 
  margin-right: auto;
  border-spacing:0px;
}
table.alt th {
    border-bottom: 1px solid #9c9c9c;
    border-top: 1px solid #9c9c9c;
    font-weight: 700;
    color: #f7f4e6;
    text-shadow: 0px 0px 8px #3f445f;
}
table.alt td {
    border-bottom: 1px solid #9c9c9c;
    border-top: 1px solid #9c9c9c;
}
table.alt tr:nth-child(even){background-color: #E7E7E7}
table.alt th {background-image: linear-gradient(hsl(230, 25%, 80%), hsl(230, 25%, 60%)); 
}
@media only screen and (max-width: 374px) 							{table.alt {width:100%;} table.alt th {font-family: "Abel"; font-size: 12px; padding: 2px 2px;} table.alt td {font-family: "Abel" !important; font-size: 12px; padding: 2px 2px; }}
@media only screen and (min-width: 375px) and (max-width: 576px) 	{table.alt {width:100%;} table.alt th {font-family: "Abel"; font-size: 14px; padding: 2px 4px;} table.alt td {font-family: "Abel" !important; font-size: 14px; padding: 2px 2px; }}
@media only screen and (min-width: 576px) and (max-width: 767px) 	{table.alt {width:98%;} table.alt th {font-family: "Abel"; font-size: 14px; padding: 2px 8px;} table.alt td {font-size: 12px; padding: 3px 3px;}}
@media only screen and (min-width: 768px) and (max-width: 991px) 	{table.alt {width:96%;} table.alt th {font-family: "Abel"; font-size: 16px; padding: 3px 15px;} table.alt td {font-size: 14px; padding: 3px 4px;}} 
@media only screen and (min-width: 992px) and (max-width: 1199px) 	{table.alt {width:94%;} table.alt th {font-size: 18px; padding: 3px 20px;} table.alt td {font-size: 16px; padding: 3px 3px;}} 
@media only screen and (min-width: 1200px) 							{table.alt {width:90%;} table.alt th {font-size: 20px; padding: 3px 25px;}table.alt td {font-size: 18px; padding: 3px 3px;}}

/* --------------------------- Test --------------------------------------- */

table.classement {
  border-collapse: collapse;
  background-color: #F3F3F3;
  color: #ff0000;
  font-weight: 500;
  line-height: normal;
  margin-left: auto; 
  margin-right: auto;
  border-spacing:0px;
}
table.classement th {
    border-bottom: 1px solid #9c9c9c;
    border-top: 1px solid #9c9c9c;
    font-weight: 700;
    color: #f7f4e6;
    text-shadow: 0px 0px 8px #3f445f;
}
table.classement td {
    border-bottom: 1px solid #9c9c9c;
    border-top: 1px solid #9c9c9c;
}
table.classement tr:nth-child(even){background-color: #E7E7E7}
table.classement th {background-image: linear-gradient(hsl(230, 25%, 80%), hsl(230, 25%, 60%)); 
}
@media only screen and (max-width: 374px) 							{table.classement {width:100%;} table.classement th {font-family: "Abel"; font-size: 12px; padding: 1px 1px;} table.classement td {font-family: "Abel" !important; font-size: 10px; padding: 1px 1px;}}
@media only screen and (min-width: 375px) and (max-width: 576px) 	{table.classement {width:100%;} table.classement th {font-family: "Abel"; font-size: 14px; padding: 1px 1px;} table.classement td {font-family: "Abel" !important; font-size: 10px; padding: 1px 1px; style="white-space:nowrap";}}
@media only screen and (min-width: 576px) and (max-width: 767px) 	{table.classement {width:100%;} table.classement th {font-family: "Abel"; font-size: 14px; padding: 1px 1px;} table.classement td {font-family: "Abel" !important; font-size: 12px; padding: 1px 1px; style="white-space:nowrap";}}
@media only screen and (min-width: 768px) and (max-width: 991px) 	{table.classement {width:98%;} table.classement th {font-family: "Abel"; font-size: 16px; padding: 1px 1px;} table.classement td {font-size: 12px; padding: 1px 1px; style="white-space:nowrap";}} 
@media only screen and (min-width: 992px) and (max-width: 1199px) 	{table.classement {width:96%;} table.classement th {font-size: 18px; padding: 1px 1px;} table.classement td {font-size: 16px; padding: 1px 1px; style="white-space:nowrap";}} 
@media only screen and (min-width: 1200px) 							{table.classement {width:94%;} table.classement th {font-size: 20px; padding: 1px 1px;}table.classement td {font-size: 18px; padding: 1px 1px; style="white-space:nowrap";}}

/* --------------------------- Test --------------------------------------- */


table.altx {
  border-collapse: collapse;
  width: 0*;
  background-color: #F3F3F3;
  color: #000000;
  font-weight: 500;
  line-height: normal;
  margin-left: auto; 
  margin-right: auto;
  border-spacing:0px;
}
table.altx th {
    border-bottom: 1px solid #9c9c9c;
    border-top: 1px solid #9c9c9c;
    font-weight: 700;
    font-size: 18px;
    padding: 2px 8px;
    color: #f7f4e6;
    text-shadow: 0px 0px 8px #3f445f;
}
table.altx td {
    border-bottom: 1px solid #9c9c9c;
    border-top: 1px solid #9c9c9c;
}
table.altx tr:nth-child(even){background-color: #E7E7E7}
table.altx th {background-image: linear-gradient(hsl(230, 25%, 80%), hsl(230, 25%, 60%)); 
}
@media only screen and (max-width: 374px) 							{table.altx table.altx th {font-family: "Abel"; font-size: 12px; padding: 2px 2px;} table.altx td {font-family: "Abel" !important; font-size: 12px; padding: 2px 2px; }}
@media only screen and (min-width: 375px) and (max-width: 576px) 	{table.altx table.altx th {font-family: "Abel"; font-size: 14px; padding: 2px 4px;} table.altx td {font-family: "Abel" !important; font-size: 14px; padding: 2px 2px; }}
@media only screen and (min-width: 576px) and (max-width: 767px) 	{table.altx table.altx th {font-family: "Abel"; font-size: 14px; padding: 2px 8px;} table.altx td {font-size: 12px; padding: 3px 3px;}}
@media only screen and (min-width: 768px) and (max-width: 991px) 	{table.altx table.altx th {font-family: "Abel"; font-size: 16px; padding: 3px 15px;} table.altx td {font-size: 14px; padding: 3px 4px;}} 
@media only screen and (min-width: 992px) and (max-width: 1199px) 	{table.altx table.altx th {font-size: 18px; padding: 3px 20px;} table.altx td {font-size: 16px; padding: 3px 3px;}} 
@media only screen and (min-width: 1200px) 							{table.altx table.altx th {font-size: 20px; padding: 3px 25px;}table.altx td {font-size: 18px; padding: 3px 3px;}}




table.altt100 {
  width:100%;
  margin-left: auto; 
  margin-right: auto;
}

@media only screen and (max-width: 374px) {table.altt100 {width:100%;}}
@media only screen and (min-width: 375px) and (max-width: 576px) {table.altt100 {width:100%;}}
@media only screen and (min-width: 576px) and (max-width: 767px) {table.altt100 {width:96%;}}
@media only screen and (min-width: 768px) and (max-width: 991px) {table.altt100 {width:94%;}}
@media only screen and (min-width: 992px) and (max-width: 1199px) {table.altt100 {width:92%;}}
@media only screen and (min-width: 1200px) {table.altt100 {width:90%;max-width:1600px;}}





table.altgw {
  border-collapse: collapse;
  background-color: hsl(222, 18%, 50%);
  color: #fff;
  line-height: normal;
  margin-left: auto; 
  margin-right: auto;
  border-spacing:0px;
}
table.altgw th {
    border-bottom: 1px solid #9c9c9c;
    border-top: 1px solid #9c9c9c;
    color: #f7f4e6;
    text-shadow: 0px 0px 8px #3f445f;
}
table.altgw td {
    border-bottom: 0px solid #fff;
    border-top: 0px solid #fff;
}
table.altgw tr:nth-child(odd){background-color:  hsl(150, 18%, 50%)}
table.altgw tr:nth-child(even){background-color:  hsl(150, 18%, 45%)}
table.altgw th {background-image: linear-gradient(hsl(230, 25%, 80%), hsl(230, 25%, 60%)); 
}
table.w50 {
  width:50% !important;
    max-width:1550px !important;
} 
table.w60 {
  width:60% !important;
    max-width:1550px !important;
}
table.w70 {
  width:70% !important;
    max-width:1550px !important;
} 
table.w90 {
  width:90%;
  max-width:1450px !important;
}
table.w100 {
  width:98% !important;
  max-width:1550px !important;
}
table.team {
	width:100% !important;
	max-width:1650px !important;
}


 

table.althorizontal {
	width: 90%;
	max-width: 1400px;
	min-width: 400px;
	background-color: hsl(222, 8%, 60%);
	border-collapse:collapse;
	box-shadow: 0px 0px 15px #555555;
	line-height: 150%;
	margin-left: auto; 
    margin-right: auto;
}
table.althorizontal td {
	padding: 15px;
	border: 2px hsl(222, 8%, 45%) solid;
	font-size: calc(8px + 0.6vw);
	text-align: center;
}
table.althorizontal p {
  line-height: 1.2 ;
  margin-top: 10 ;
  margin-bottom: 0 ;
}	
table.althorizontal tr {
	nth-child(even){background-color: hsl(222, 8%, 55%);
}



/* --------------------------- TABLEAUX AVEC COULEURS ALTERNATIVES --------------------------------------- */
table.sticky {
	position: sticky;
	top: -1; /* Don't forget this, required for the stickiness */
	overflow: auto;
}
div.sticky {
  position: -webkit-sticky;
  position: sticky;
  background-color: #ff5566;
  top: calc(42px + .6vw);
  padding: 10px;
  font-size: 20px;
}



/* -------------------------- BONUS --scab_a_propos.asp ------------------------------------- */
table.bonus {
  border-collapse: collapse;
  min-width:0px;
  max-width:1600px;
  background-color: #ffffff;
}
table.bonus th {
  background-color: hsl(219, 45%, 75%);
  text-align: center;
  line-height: 130%;
  background-color: hsla(220, 30%, 65%, 1); 
  color: #FFFFFF;
  text-shadow: 0px 0px 8px #003355;
  text-transform: uppercase;
  font-weight: 600;
  border:solid 0px #9C9C9C;
  border-bottom: 2px solid hsl(219, 45%, 35%);
  border-top: 0px solid #9c9c9c;
}
table.bonus tr {
  line-height: 200%;
}
/* Le troisième chiffre dans la couleur rgba désigne l'opacité. Plus le chiffre est grand, plus grand est l'opacité */
table.bonus tr:nth-child(2){background-color: rgba(180, 200, 250, 0.7) !important; text-align:center; color:#0000; font-weight: 600 ;center;} /* la première rangée après le TH */
table.bonus tr:nth-child(even){background-color: rgba(200, 210, 230, 0.6); color:#000000; text-align: center; } /* les rangées impaires */
table.bonus tr:nth-child(odd) {background-color: rgba(220, 230, 240, 0.6); color:#000000; text-align: center; } /* Les rangées paires */
table.bonus td:nth-of-type(1) {background: rgba(150, 220, 150, 0.5); color:#000000; text-align: center; } /* la première colonne */
table.bonus td:nth-child(even) {background-color: rgba(200, 210, 220, 0.5); color:#000000; } /* les colonnes paires */


@media only screen and (max-width: 374px) {
table.bonus {
  width:100%;
}
table.bonus th {
  font-size: 12px;
  padding: 2px 2px;
}    
table.bonus td, tr {  
  font-size: 10px;
  padding: 6px 2px;
} 
}
@media only screen and (min-width: 375px) and (max-width: 576px) {
table.bonus {
  width:100%;
}
table.bonus th {
  font-size: 14px;
  padding: 4px 2px;
}    
table.bonus td, tr {  
  font-size: 12px;
  padding: 6px 2px;
}   
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
table.bonus {
  width:100%;
}
table.bonus th {
  font-size: 16px;
  padding: 4px 2px;
}    
table.bonus td, tr {  
  font-size: 14px;
  padding: 8px 2px;
}   
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
table.bonus {
  width:95%;
}
table.bonus th {
  font-size: 18px;
  padding: 4px 2px;
}    
table.bonus td, tr {  
  font-size: 16px;
  padding: 8px 2px;
}  
} 
@media only screen and (min-width: 992px) and (max-width: 1199px) {
table.bonus {
  width:90%;
}
table.bonus th {
  font-size: 20px;
  padding: 4px 2px;
}    
table.bonus td, tr {  
  font-size: 18px;
  padding: 8px 2px;
} 
@media only screen and (min-width: 1200px) {
table.bonus {
  width:85%;
}
table.bonus th {
  font-size: 24px;
  padding: 4px 2px;
}    
table.bonus td, tr {  
  font-size: 20px;
  padding: 8px 2px;
}   
}

/* ----------------------------------COÛT ------------------------------------------- */
table.couts {
  border-collapse: collapse;
  text-align:center;
  color: #000000;
  background-color: #ffffff;
}
table.couts th {
  text-align: center;
  line-height: 130%;
  color: #ffffff;
  text-shadow: 0px 0px 8px #003355;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px;
  border:solid 0px #9C9C9C;
  border-bottom: 2px solid hsl(219, 45%, 35%);
  border-top: 0px solid #9c9c9c;
  background-color: hsla(220, 30%, 30%, 1);
}
table.couts td {
  line-height: 130%;
  color: #000;
  padding: 10px 5px;
}
/* Le troisième chiffre dans la couleur rgba désigne l'opacité. Plus le chiffre est grand, plus grand est l'opacité */
table.couts tr:nth-child(2){background-color: hsla(220, 30%, 50%, 1) !important; font-weight: 800 ;} /* 2e rangée après le TH */
table.couts tr:nth-child(3){background-color: hsla(50, 60%, 75%, 1) !important; font-weight: 800 ;} /* 3e rangée après le TH */
table.couts tr:nth-child(4){background-color: hsla(100, 60%, 75%, 1) !important; font-weight: 800 ;} /* 4e rangée après le TH */
table.couts tr:nth-child(5){background-color: hsla(150, 60%, 75%, 1) !important; font-weight: 800 ;} /* 5e rangée après le TH */
table.couts tr:nth-child(6){background-color: hsla(200, 60%, 75%, 1) !important; font-weight: 800 ;} /* 6e rangée après le TH */
table.couts tr:nth-child(7){background-color: hsla(250, 60%, 75%, 1) !important; font-weight: 900 ;} /* 7e rangée après le TH */
table.couts tr:nth-child(8){background-color: hsla(300, 60%, 75%, 1) !important; font-weight: 900 ;} /* 8e rangée après le TH */
table.couts tr:nth-child(9){background-color: hsla(220, 30%, 50%, 1) !important; font-weight: 800 ;} /* 8e rangée après le TH */

@media only screen and (max-width: 374px) {
  table.couts {
	width:100%;
    padding: 2pt 2pt;
  }
  table.couts th {
    font-size: 12px;
  }
 table.couts td {
    font-size: 10px;
  }  
}
@media only screen and (min-width: 375px) and (max-width: 576px) {
  table.couts {
    width:100%;
    font-size: 10px;
    padding: 2pt 2pt;
  }
  table.couts th {
    font-size: 14px;
  }
 table.couts td {
    font-size: 12px;
  }    
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
 table.couts {
	width:95%;
    font-size: 12px;
    padding: 2pt 2pt;
  } 
    table.couts th {
    font-size: 16px;
  }
  table.couts td {
    font-size: 14px;
  }   
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
table.couts {
	width:80%;
    font-size: 16px;
    padding: 2pt 2pt;
  } 
    table.couts th {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
table.couts {
	width:70%;
    font-size: 20px;
    padding: 2pt 2pt;
  }
    table.couts th {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) {
table.couts {
	width:60%;
    font-size: 20px !important;
    padding: 2pt 2pt;
  }
table.couts td {
    font-size: 20px !important;
    padding: 8pt 2pt;
  }  
    table.couts th {
    font-size: 16px;
  }
}



/* ---------------------------------------------------------------------------------------- */


table.chess {
	width: 95%;
	max-width: 1600px;
	min-width: 400px;
	background-color: hsl(222, 8%, 60%);
	border-collapse:collapse;
	box-shadow: 0px 0px 15px #555555;
    margin-left: auto; 
    margin-right: auto;
}
table.chess th {
	padding: 5px;
}	
table.chess td {
	padding: 10px;
	font-size: calc(10px + 0.6vw);
    text-align: center;
}
table.chess p {
  line-height: 1.2 ;
  margin-top: 0 ;
  margin-bottom: 0 ;
}





table.pad0 td {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
table.pad1 td {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
table.pad2 td {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
table.pad5 td {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
table.pad5h td {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
table.pad5hv td {
  padding: 5px !important;
}
table.pad5p td {
  padding: 0.5% !important;
}
table.pad10 td {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
table.pad10h td {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
table.pad15 td {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
table.pad15h td {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
table.pad10hv td {
  padding: 10px !important;
}
table.pad20 td {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
table.pad15b td {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

table.Articles {
  width:99%;
  max-width:1900px;
  background-color: hsl(222, 6%, 50%);
  border-left:solid 0px #808080;
  border-right:solid 0px #808080;
	margin-left: auto; 
    margin-right: auto;
	border-spacing:0px;
	border-collapse:collapse;
 	font-size: calc(12px + .5vw);
	font-weight: 400;
}
table.Articles th {
  padding-top: calc(55px + .6vw);
  padding-bottom: calc(20px + .2vw);
  padding-right: 1%;
  padding-left: 1%;
  text-align: center;
  font-size: calc(20px + .5vw);
  color: hsl(50, 70%, 80%);
  text-transform: uppercase;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.8);
  font-weight: 700;
}
table.Articles td {
  padding: 1% 1%;
  line-height: 1.5 ;
}
table.Articles td p {
  line-height: 1.5 ;
  margin-top: 1.5em ;
  margin-bottom: 1.5em ;
}
table.Articles th p {
  line-height: 150% ;
  margin-top: 0.5em ;
  margin-bottom: 0.5em ;
}

table.coinsronds {
	border-radius: calc(10px + .8vw);
}
table.ombre {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.lignevtd td {
	border-right:solid 1px #bbbbcc;
}
.lignevth th {
	border-right:solid 1px #bbbbcc;
}
table.noborder {
    border-bottom: 1px solid #ff0000 !important;
    border-top: 1px solid #00ff00 !important;
}

/* ----------------- MONTRER ET CACHER ---------------- */
/* CACHER */
@media (max-width: 600px) {
.hide600 {
  display: none;
}
}
/* UNHIDE */
@media (min-width: 601px) {
.unhide600 {
  display: none;
}
}
/* CACHER */
@media (max-width: 371px) {
.hideA {
  display: none;
}
}
/* UNHIDE */
@media (min-width: 372px) {
.unhideA {
  display: none;
}
}
BenchNine{
font-family: 'BenchNine', sans-serif;
}
Teko{
font-family: 'Teko', sans-serif;
}
Abel{
font-family: 'Abel', sans-serif;
}
.BenchNine{
font-family: 'BenchNine', sans-serif;
}
.Teko{
font-family: 'Teko', sans-serif;
}
.Abel{
font-family: 'Abel', sans-serif;
}
.Bungee {font-family: 'Bungee Inline', cursive; !important}
.Faster {font-family: 'Faster One', cursive;}
.Fredericka {font-family: 'Fredericka the Great', cursive;}
.Frijole {font-family: 'Frijole', cursive;}


.radius {
  border: 4px solid #445;
  padding: 1px;
  border-radius: 25px;
}
span.spamprotection {display:none;}