/* V1.0 */
/*Table styling*/
#div_table_load_capacity{
	overflow: auto;
}
.table_load_capacity {
	text-align: center;
	border-collapse: collapse;
	float: left;
	margin-top: 1em;
	overflow: scroll;
}

.table_load_capacity tr:nth-of-type(odd) {
	background-color: rgb(221, 219, 219);
}

.table_load_capacity thead th {
	background-color: #084a7e;
	color: whitesmoke;
	border: solid black 1px;
}

.table_load_capacity th, .table_load_capacity td {
	border: solid 1px;
	min-width: 5.1em;
	height: 2em;
}

.table_load_capacity thead tr:last-of-type th {
	height: 3em;
}

@media (max-width: 67em) {
	/*Table*/
	.table_load_capacity {
		float: unset;
		margin: auto;
		margin-top: 1em;
	}
	.table_load_capacity:first-of-type {
		margin: auto;
		margin-top: 1em;
	}

	.table_load_capacity th, .table_load_capacity td {
		min-width: 3.8em;
	}

}