﻿/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   Specify the CSS style sheets
   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
table 
{

   font-size: 14px;
   font-family: Helvetica, Arial, sans-serif;
   border-collapse: separate;
   border-spacing: 10px 5px;
   table-layout: auto;
   empty-cells: show;
}

thead th,
tfoot th,
tfoot td 
{
   background: #eee;
}

th,
td 
{
   border: 1px solid #ccc;
   padding: 10px;
}

tbody th,
tfoot th 
{
   text-align: left;
}

/* Structural Pseudo-Class */
thead th:first-child 
{
   text-align: left;
}

/* Structural Pseudo-Class */
tbody tr:nth-child( even ) 
{
   background: #ddd;
}