table {
  background:#fff;
  max-width:100%;
  border-spacing:0;
  width:100%;
  margin:10px 0;
  border:1px solid #ddd;
  border-collapse:separate;
  *border-collapse:collapsed;
  -webkit-box-shadow:0 0 4px rgba(0,0,0,0.10);
     -moz-box-shadow:0 0 4px rgba(0,0,0,0.10);
          box-shadow:0 0 4px rgba(0,0,0,0.10);
  }
table th,
table td {
padding:8px;
line-height:20px;
text-align:left;
border-top:1px solid #ddd;
}
table th {
background:#000000;
color:#FFFFFF;
/*background:-webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#000000));
background:-moz-linear-gradient(top, #f6f6f6, #eee);
text-shadow:0 1px 0 #fff;
font-weight:bold;*/
vertical-align:bottom;
}
table td {
vertical-align:top;
}
table thead:first-child tr th,
table thead:first-child tr td {
border-top:0;
}
table tbody + tbody {
border-top:2px solid #ddd;
}
table th + th,
table td + td,
table th + td,
table td + th {
border-left:1px solid #ddd;
}
table thead:first-child tr:first-child th,
table tbody:first-child tr:first-child th,
table tbody:first-child tr:first-child td {
border-top:0;
}


th[role=columnheader]:not(.no-sort) {
	cursor: pointer;
}

th[role=columnheader]:not(.no-sort):after {
	content: '';
	float: right;
	margin-top: 7px;
	border-width: 0 4px 4px;
	border-style: solid;
	border-color: #FFFFFF transparent;
	visibility: hidden;
	opacity: 0;
	-ms-user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

th[aria-sort=ascending]:not(.no-sort):after {
	border-bottom: none;
	border-width: 4px 4px 0;
}

th[aria-sort]:not(.no-sort):after {
	visibility: visible;
	opacity: 0.4;
}

th[role=columnheader]:not(.no-sort):hover:after {
	visibility: visible;
	opacity: 1;
}