table.blueTable {
  background-color: transparent;
  width: 100%;
  border-collapse: collapse;
}
table.blueTable td, table.blueTable th {
  border: 0px solid #e1e1e1;
  padding: 5px 3px;
}
table.blueTable tr:nth-child(even) {
  background: #f3f4f5;
}
table.blueTable tfoot td {
  font-size: 14px;
}
table.blueTable tfoot .links {
  text-align: right;
}
table.blueTable tfoot .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}

table.scheduleTable {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.scheduleTable td {
	border: 1px solid #DCDCDC;
  padding: 5px 3px;
	vertical-align: top;
}
table.scheduleTable th {
  padding: 5px 3px;
	vertical-align: bottom;
}
table.scheduleTable thead {
  background: #588EB1;
  background: -moz-linear-gradient(top, #82aac4 0%, #6899b8 66%, #588EB1 100%);
  background: -webkit-linear-gradient(top, #82aac4 0%, #6899b8 66%, #588EB1 100%);
  background: linear-gradient(to bottom, #82aac4 0%, #6899b8 66%, #588EB1 100%);
  border-bottom: 2px solid #083F63;
}
table.scheduleTable thead th {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}
table.scheduleTable tfoot td {
  font-size: 14px;
}
table.scheduleTable tfoot .links {
  text-align: right;
}
table.scheduleTable tfoot .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}
chapter-item{
	list-style: none;
	border-top: 1px solid #ccc;
}

.keyword{
	background-color: #f2f2f2;
	border: 1px solid #dadada;
	padding:4px 10px;
	line-height:2;
	border-radius:20px;
	-webkit-transition: background-color .5s ease-out;
  -moz-transition: background-color .5s ease-out;
  -o-transition: background-color .5s ease-out;
  transition: background-color .5s ease-out;
}

.keyword:hover{
	background-color: #dadada;
}

.topic{
	background-color: #e1e1e1;
	padding:4px 10px;
	line-height:2;
	border-radius:20px;
	font-weight: 700;
	margin-right: 5px;
	margin-bottom: 5px;
	white-space: nowrap;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}
.topic-list{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 0 24px;
}