/* a condensed table */
table.condensed tbody th, table.condensed tbody td {
    padding: 2px 5px; /* e.g. change 8x to 4px here */
    font-size: 12px;
    font-family: Arial,Helvetica;
    white-space: nowrap;
    border-right: 1px solid #cccccc;
}

table.condensed thead th, table.condensed thead td {
    padding: 2px 5px; /* e.g. change 8x to 4px here */
    font-size: 12px;
    font-family: Arial,Helvetica;
    white-space: nowrap;
    background-color: #d3e5f9;
    border-right: 1px solid #cccccc;    
    border-bottom: 1px solid #cccccc;    
}


table.condensed tbody tr:last-child {
    border-bottom: 1px solid #cccccc;
}

table.condensed thead tr:first-child  {
    border-top: 1px solid #cccccc;
}

table.condensed tbody tr, th  {
    border-left: 1px solid #cccccc;
}


tr:nth-of-type(odd) { background-color: #ffffff; }
tr:nth-of-type(even) { background-color: #eeeeee; }

/* table tr:hover { background-color: #ddd; } */
