@charset "utf-8";
/* CSS Document */

.sr-only {
  position: relative;
  top: -30em;
}

table.sortable td,
table.sortable th {
  padding: 10px 10px;
text-align: center;
}

table.sortable th {
  font-weight: bold;
  border-bottom: thin solid #ffffff;
  position: relative;
}

table.sortable th.no-sort {
  padding-top: 0.35em;text-align: center;
}

table.sortable th:nth-child(5) {width:inherit
}

table.sortable th button {
  padding: 4px;
  margin: 1px;
  font-size: 100%;
  font-weight: bold;
  background: transparent;
  border: none;
  display: inline;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  outline: none;
  cursor: pointer;
}

table.sortable th button span {
  position: absolute;
  right: 4px;
}

table.sortable th[aria-sort="descending"] span::after {
  content: "▼";
  color: currentcolor;
  font-size: 100%;
  top: 0;
}

table.sortable th[aria-sort="ascending"] span::after {
  content: "▲";
  color: currentcolor;
  font-size: 100%;
  top: 0;
}

table.show-unsorted-icon th:not([aria-sort]) button span::after {
  content: "♢";
  color: currentcolor;
  font-size: 100%;
  position: relative;
  top: -3px;
  left: -4px;
}

table.sortable td.num {
  text-align: right;
}

table.sortable tbody tr:nth-child(odd) {
  background-color: #ddd;
}

/* Focus and hover styling */

table.sortable th button:focus,
table.sortable th button:hover {
  padding: 10px;
  border: 0;
  background-color: #e5f4ff;
}

table.sortable th button:focus span,
table.sortable th button:hover span {
  right: 10px;
}

table.sortable th:not([aria-sort]) button:focus span::after,
table.sortable th:not([aria-sort]) button:hover span::after {
  content: "▼";
  color: currentcolor;
  font-size: 100%;
  top: 0;
}


table {
  border: 1px #ffffff solid;
  font-size: .9em;
  
  border-collapse: collapse;
  border-radius: 00px;overflow-x:hidden;
}

th {
  text-align: center;
}
  
thead {
  font-weight: bold;
  color: #fff;
  background: #0000ff;;
}
  
 td, th {
  padding: 1em .5em;
	 vertical-align: middle;}
  
 td {
  border-bottom: 1px solid rgba(0,0,0,.1);
  background: #ffffff; 
}

a {
  color: #73685d;
}


	 
@media only screen and (max-width: 950px) {
	
	/* Force table to not be like tables anymore */
 table, 
	tbody, 
	thread,
	th,
	td, 
	tr { 
		display: inline-block;width:100%; padding: 10px 0;
	}

	tr { border: 1px solid #ccc; }
	
	 td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 0; 
		white-space: normal;
		text-align:left;
	}
 
	 td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 100%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
	}
	.sortable thread, tr{font-size:14px}
	
	.no-sort {display:none}
	
}