@charset "utf-8";
/* CSS Document */

.content-table {
	border-collapse:collapse;
	font-size: 0.9em;
	margin: 0 auto;
	min-width:400px;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(0,0,0,0.50);
	font-family: sans-serif;
}
.content-table thead tr {
	background-color: #009879;
	color: #ffffff;
	text-align: left;
	font-weight: bold;

}
.content-table th,
.content-table td {
	padding:12px 15px;
}
.content-table tbody tr {
	border-bottom: 1px solid #dddddd;
}
.content-table tbody tr:nth-of-type(even){
	background-color: #f3f3f3;
}
.content-table tbody tr:last-of-type {
	border-bottom:2px solid #009879;
}
.content-table tbody th.active-row {
	font-weight:bold;
	color: #009879;
}
.content-table tbody td.boldleft {
	font-weight:bold;
	text-align:right;
	font-family: Arial, Helvetica, sans-serif;
}
.example {
    font-size: 24px;
  }
@media screen and (min-width: 601px) {
  .example {
    font-size: 24px;
  }
}

@media screen and (max-width: 600px) {
  .example {
    font-size: 15px;
  }
}