﻿<style type="text/css">

    /* Définir une couleur de background par défaut */
    /* Dans le cas où les 2 propriétés CSS3 ne seraient pas prises en compte */
    .mon_tableau tr{
	font-family: "Calibri", Arial, Sans-serif;
	background-color:#34A7C1;
	border : none;
	text-align :center;
    }
    /* Définir la couleur pour les lignes paires */
    .mon_tableau tr:nth-child(odd){
	background-color:#34A7C1;
	border : none;
	text-align :center;
    }
    /* Définir la couleur pour les lignes impaires */
    .mon_tableau tr:nth-child(even){
    background-color:#EEEEEE;
	border : none;
	text-align :center;
    }

table, tr, td, th {
border:0; 
border-spacing: 5px;
padding: 5px;
text-align :center;
margin: auto;
}

#montableau{
overflow:auto;
		
border-spacing:0;
border-collapse:separate;
border-radius:10px;
-moz-border-radius:10px;
-webkit-border-radius:10px;
		
}
</style>