/* CSV Table Classes */
TABLE.CSVTable {
	border-collapse: collapse;
	width: 150px;
}

/* Header */
TABLE.CSVTable THEAD TR {
	background: #D9F1FC;
}
TABLE.CSVTable TH {
}

/* Table Cells */
TABLE.CSVTable TD, TABLE.CSVTable TH {
	padding: 2px;
	text-align: left;
	border-bottom: 1px solid #FFFFFF;
	border-top: 1px solid transparent;
}
/* Default background color for rows */
TABLE.CSVTable TR {
	background: #D9F1FC;
}
/* Background color for odd rows */
TABLE.CSVTable TR.odd {
	background: #fff;
}
/* Hover color for all rows */
TABLE.CSVTable TR:hover {
	background: #D9F1FC;
}
