
/* Impression des GRID dans les listes */
.TablePrint
{
   border-collapse: collapse;
   font-size: 9pt;
   font-family: arial;
   white-space: nowrap;
}
.TablePrint thead
{
   border-bottom: 1px solid black;
   background-color: #ccc;
}
.TablePrint th, .TablePrint td
{
   padding-right: 8px;
}
.TablePrint tbody tr:nth-child(odd)  { background-color:#eee; }
.TablePrint tbody tr:nth-child(even){background-color: #fff}

@page 
{
    size: auto;   /* auto is the current printer page size */
    margin: 5mm;  /* this affects the margin in the printer settings */ 
}

