/*///////////////////////////// ↓↓Table↓↓ ///////////////////////////////*/

table {
  border-spacing: 1;
  border-collapse: collapse;
  background: white;
  table-layout: fixed;
  /* border-radius: 10px; */
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
table * {
  position: relative;
}

table td{
	font-size: 1.2em;
}

table td, table th {
  padding-left: 8px;
}
table thead tr {
  height: 60px;
  background: #0a1794;
	color: white;
}
table tbody tr {
  height: 50px;
}
table tbody tr:last-child {
  border: 0;
}
table td, table th {
  text-align: left;
}

tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

tbody tr {
  color: #808080;
  line-height: 1.2;
}

tbody tr:hover {
  color: #555555;
  background-color: #f5f5f5;
  cursor: pointer;
}

.cst_table {
  border-collapse: collapse;
  border: 1px solid #ccc; /* thin border around the outside of the table */
}

.cst_table th,
.cst_table td {
  padding: 6px;
  word-break: break-word;
  white-space: normal;
  border: 1px solid #ccc;  /* thin border around each cell */
}	

/*///////////////////////////// ↑↑Table↑↑ ///////////////////////////////*/