/* CSS Document */

.tableholder {
	position: relative;
}
table.fixed {
	height: 40em;
	overflow: hidden;
	border-collapse: collapse;
}
.fixed caption {
	margin-bottom: 2em;
}
table.fixed thead {
	height: 3em;
	padding-top: 0em;
}
table.fixed tbody {
	height: 80%;
	overflow: scroll;
}

.fixed thead th {
	vertical-align: bottom;
}
.fixed th, .fixed td {
	padding: 0.4em 0.5em;
}
.fixed tr :last-child {
	padding-right: 30px; /* make room for scroll bar */
}

tfoot th, tfoot td {
	font-weight: bold;
}
.fixed tbody th, .fixed td, .fixed tfoot th {
	border-bottom: none !important;
}

th[scope=row] {
	font-weight: normal;
	text-align: left;
}

.number {
	text-align: right;
}



