/**
 *  Tabular table styles
 */
.tabulator { border-color: #ccc; background: transparent; }
.tabulator-row {
	padding-right: 0;
	border-top:1px solid #ccc;
	border-bottom: none;
	border-collapse: collapse;
}
.tabulator-row .tabulator-cell {
	padding: 12px;
}
.tabulator .tabulator-footer {
	background-color: #eef2f5;
	border-color: #2a73b1;
}
.tabulator .tabulator-footer .tabulator-page {
	border-color: #2a73b1;
}
.tabulator .tabulator-header, .tabulator .tabulator-header .tabulator-col {
	background: #2a73b1;
	background-color:  #2a73b1;
	color: white;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content:hover {
	background-color:  #1a62a0;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-content .tabulator-arrow, .tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="none"] .tabulator-col-content .tabulator-arrow {
	border-bottom-color: white;
}
.tabulator-row.tabulator-row-even {
	background: transparent;
}
.tabulator-row.tabulator-selectable:hover {
	background-color: #f1f0ff;
}
.tabulator-row.tabulator-selectable:nth-child(odd) {
	background-color: #f2f9fe;
}
