/* Span-based table that makes the whole row clickable  */

.newtable {
	margin-top: 1em;
	padding: 2px;
	border: solid 3px #998;
	border-radius: 5px;
	margin-bottom: 1em;
	}
.nt-row {
	display: block;
	width: 100%;
	padding: 5px 0;
	}
a.nt-row:nth-child(even) {
	background: #ddc;
	}
	a.nt-row:nth-child(even):active,
	a.nt-row:nth-child(even):hover,
	a.nt-row:nth-child(even):focus {
		background: #fc5;
		}
.nt-header {
	text-transform: uppercase;
	background: #998 url(/parts/gradients/th-10x200.jpg) center repeat-x;
	color: #fff;
	}
.nt-cell {
	display: inline-block;
	vertical-align: top;
	padding: 5px;
	}
.nt-header .nt-cell {
	font-weight: bold;
	}
