.green { color:green; }
.red { color:red; }

table.sortable { width:100%; }

table.sortable th { color:rgb(70, 102, 124); cursor:pointer; }

table.sortable th.headerSortUp:after {
    content: ">";
    margin-left: 4px;
}
table.sortable th.headerSortDown:after {
    content: "<";
    margin-left: 4px;
}

table.sortable th { height:25px; line-height:25px; padding-left:4px; padding-right:4px; }

@media only screen and (min-width:600px) { 
	table.sortable td:nth-child(1), table.sortable th:nth-child(1) { width:31%; }
	table.sortable td:nth-child(2), table.sortable th:nth-child(2) { width:31%; }
	table.sortable td:nth-child(3), table.sortable th:nth-child(3) { width:6%; }
	table.sortable td:nth-child(4), table.sortable th:nth-child(4) { width:8%; }
	table.sortable td:nth-child(5), table.sortable th:nth-child(5) { width:6%; }
	table.sortable td:nth-child(6), table.sortable th:nth-child(6) { width:12%; }
	table.sortable td:nth-child(7), table.sortable th:nth-child(6) { width:6%; }
}