/* Table contact */

table.tcontact
{
  border: 6px solid var(--couleur-gen);
  
  border-radius: 20px 0px 20px 20px;
  
  margin: auto;
  
  font-size: 18px;
}

table.tcontact tr
{
  background-color: transparent;
}

table.tcontact td.titre_contact
{
  font-weight: bold;
}

table.tcontact tr td
{
  background-color: transparent;
  
  padding: 6px;
}

table.tcontact tr:nth-child(2n) td
{
  background-color: var(--couleur-bleu-clair);
}

table.tcontact tr:nth-child(2n+1) td
{
  background-color: var(--couleur-gris-clair);
}


table.tcontact td
{
  border: 2px solid var(--couleur-gen);
  padding: 3px;
  
  word-break: break-all;
}

table.tcontact td#hgauche
{
  border-radius: 15px 0px 0px 0px;
}

table.tcontact td#bgauche
{
  border-radius: 0px 0px 0px 15px;
}

table.tcontact td#bdroit
{
  border-radius: 0px 0px 15px 0px;
}

table.tcontact a
{
	color: var(--couleur-bleu-fonce);
}

table.tcontact a:hover
{
	color: var(--couleur-vert-fonce);
}

table.tcontact a:active
{
	color: var(--couleur-rouge-fonce);
}


