table {
    width: 100%;
    overflow: auto;
    font-size: 12px;
}
/*table, th, td {
	border: 1px solid black;
	border-collapse: collapse;
	border-spacing: 0;
}*/
th {
	padding: 3px;
	text-align: center;
    background: #ABDD93;
	text-transform: uppercase;
}
td {
    text-align: left;
    padding: 3px;
    overflow: auto;
}
th.fitwidth, td.fitwidth {
    width: 1px;
    white-space: nowrap;
}
tr:nth-child(even){background-color: #f2f2f2}

.tablescroll {
    height: 90%;//500px;
    overflow: scroll;
	overflow-y: auto;
	margin: 6px 0;
}
.tablescroll thead {
    position: sticky;
    top: 0;
}

.cTableStatic {
    overflow-y: auto;
    height: 95%;
}
.cTableStatic thead th {
    position: sticky;
    top: 0;
}

.cTableStatic tbody {
    bottom: 10px;
}

