.table_content #father {
	width: 400px;
	overflow: auto;
}
.table_content table,
.table_content td {
	border: 1px solid #868585;
	font-size: 12px;
}
.table_content table {
	border-collapse: separate;
	border-spacing: 0;
	margin-left: 0; /* relative to the nearest block container's width */
	margin-right: auto;
}
.table_content table tr:nth-child(odd) {
	background-color: #ccffff;
}
.table_content table tr:nth-child(even) {
	background-color: white;
}
.table_content table thead {
	position: sticky;
	top: 0;
}
.table_content table th {
	background-color: greenyellow;
	border: 1px solid black;
	text-align: center;
}
.table_content table tr.base-values th {
	background-color: springgreen;
}
.table_content table tr:hover {
	background-color: #ffffcc;
	cursor: pointer;
}

.warning {
	background-color: orange;
}
