/*!
Pure v1.0.1
Copyright 2013 Yahoo!
Licensed under the BSD License.
https://github.com/pure-css/pure/blob/master/LICENSE.md
*/
.pure-table {
    /* Remove spacing between table cells (from Normalize.css) */
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid rgba(122, 122, 82, 0.2);
	margin: 8px auto;
}

.pure-table caption {
    color: #000;
    font: italic 85%/1 arial, sans-serif;
    padding: 1em 0;
    text-align: center;
}

.pure-table td,
.pure-table th {
    border-left: 1px solid rgba(122, 122, 82, 0.1);/*  inner column border */
    border-width: 0 0 0 1px;
    font-size: .8em;
    margin: 0;
    overflow: visible; /*to make ths where the title is really long work*/
    padding: 0.45em; /* cell padding */
	text-align: left;
}

/*
striping:
   even - #fff (white)
   odd  - #f2f2f2 (light gray)
*/
.pure-table tr {
    --background-color: transparent;
}

.pure-table tr:nth-of-type(odd) {	
	background-color:rgba(122, 122, 82, .2); 
}
.pure-table tr:nth-of-type(even) {	
	background-color:transparent;
}


.pure-table thead {
    background-color: rgba(122, 122, 82, .50) !important;
    color: #fff;
    text-align: left;
    vertical-align: bottom;
}


.pure-table thead:nth-of-type(even) {
    background-color: rgba(122, 122, 82, .92) !important;
    color: #fff;
    text-align: left;
    vertical-align: bottom;
}



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


/* HORIZONTAL BORDERED TABLES */

.pure-table-horizontal td,
.pure-table-horizontal th {
    border-width: 0 0 1px 0;
    border-bottom: 1px solid #cbcbcb;
}
.pure-table-horizontal tbody > tr:last-child > td {
    border-bottom-width: 0;
}

.center, .label {text-align: center !important;}
.right {text-align: right !important;}