/*! Pure v0.6.1 Copyright 2013 Yahoo! Licensed under the BSD License. github.com/yahoo/pure/blob/master/LICENSE.md */ table {

/* Remove spacing between table cells (from Normalize.css) */
border-collapse: collapse;
border-spacing: 0;
empty-cells: show;
border: 1px solid #cbcbcb;

}

table caption {

color: #000;
font: italic 85%/1 arial, sans-serif;
padding: 1em 0;
text-align: center;

}

table td, table 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 */

}

/* Consider removing this next declaration block, as it causes problems when there's a rowspan on the first cell. Case added to the tests. issue#432 */ table td:first-child, table th:first-child {

border-left-width: 0;

}

table thead {

background-color: #e0e0e0;
color: #000;
text-align: left;
vertical-align: bottom;

}

/* striping:

even - #fff (white)
odd  - #f2f2f2 (light gray)

*/ table td {

background-color: transparent;

}

/* nth-child selector for modern browsers */ table tr:nth-child(2n) td {

background-color: #f2f2f2;

}

/* BORDERED TABLES */ table td {

border-bottom: 1px solid #cbcbcb;

} table tbody > tr:last-child > td {

border-bottom-width: 0;

}