@charset "utf-8";
/* typographie */

/* espacement */

table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 3px solid black;
}

thead th:nth-child(1) {
  width: 20%;
}

thead th:nth-child(2) {
  width: 30%;
}

thead th:nth-child(3) {
  width: 25%;
}

thead th:nth-child(4) {
  width: 35%;
}

th,
td {
  padding: 10px;
}

html {
  font-family: Verdana, Geneva, sans-serif ;
}

thead th,
tfoot th {
	font-family: Verdana, Geneva, sans-serif;
}

th {
  letter-spacing: 1px;
}

td {
  letter-spacing: 1px;
}

tbody td {
  text-align: center;
}

tfoot th {
  text-align: right;
}/* CSS Document */

/* graphisme et couleurs */

thead,
tfoot {
  background: url(leopardskin.jpg);
  color: white;
  text-shadow: 1px 1px 1px black;
}

thead th,
tfoot th,
tfoot td {
	background: #996600;
	border: 1px solid white;
  	color: white;
}

/* Alternance de couleur */

tbody tr:nth-child(odd) {
	background: #00FF00;
}

tbody tr:nth-child(even) {
  	background: #FFFF00;
}

tbody tr {
  	background-image: url(noise.png);
}

table {
	background-color: #B09F6A;
}

/* légende */

caption {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 24px;
	padding: 2px;
	font-style: italic;
	caption-side: bottom;
	color: #666;
	text-align: right;
	letter-spacing: 1px;
}

