
        body {
            font-family: Arial, sans-serif;
            margin: 40px;
            background-color: #f5f5f5;
        }

        h1 {
            color: #333;
        }

        table {
/*            width: 100%; */
            border-collapse: collapse;
            background-color: black;
        }

        th,
        td {
            padding: 2px;
/*            border: 1px solid #ccc; */
            text-align: left;
			vertical-align: top;
        }

        /* Alignement vertical du texte à côte des images */ 		
        td img {
          vertical-align: top;
        }
		
        /* En-tête */
        thead th {
            background-color: #333;
            color: white;
        }

        /* Lignes impaires */
        tbody tr:nth-child(odd) td {
            background-color: #e0e0e0;
        }

        /* Lignes paires */
        tbody tr:nth-child(even) td {
            background-color: #f0f0f0;
        }

        /* Effet au survol */
        tbody tr:hover td {
            background-color: #d0d0d0;
        }
		
        img {
            padding-left: 1px;
            padding-right: 3px;
        }		