/* from pure.css */

table.neoTable {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #cbcbcb;
}

table.neoTable td,
table.neoTable th {
    border-left: 1px solid #cbcbcb;/*  inner column border */
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible; /*to make ths where the title is really long work*/
    padding: 0.5em 1em; /* cell padding */
}

table.neoTable thead {
    background-color: #e0e0e0;
    color: #000;
    text-align: left;
    vertical-align: bottom;
}

table.neoTable tfoot {
    background-color: #f0f0f0;
    color: #000;
    text-align: left;
    vertical-align: top;
}


/* nth-child selector for modern browsers */
table.neoTable-striped tr:nth-child(2n-1) td {
      background-color: #f2f2f2;
}


/* BORDERED TABLES
table.neoTable-bordered td {
    border-bottom: 1px solid #cbcbcb;
}
table.neoTable-bordered tbody > tr:last-child > td {
    border-bottom-width: 0;
}
*/

/* HORIZONTAL BORDERED TABLES */

table.neoTable td,
table.neoTable th {
    border-width: 0 0 1px 0;
    border-bottom: 1px solid #cbcbcb;
}
table.neoTable tbody > tr:last-child > td {
    border-bottom-width: 0;
}
table.neoTable tr:hover {
  background-color: #f5f5f5
}



img.Counts { max-width: 100%;}