h4{
	color: black;
	font-size: 14pt;
	font-weight: normal;
	margin-left: 50px;
	margin-right: 50px;
	text-align: justify;
	font-family: calibri;
}
h5{
	color: black;
	font-size: 12pt;
	font-weight: normal;
	margin-left: 120px;
	margin-right: 50px;
	text-align: left;
	font-family: calibri;
}

table {
border-collapse:collapse;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1300px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
  color: black;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: black;
  display: block;
  color: black;
}

/* Caption text */
.text {
  color: black;
  font-weight: bold;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 32px;
  width: 100%;
  text-align: center;
}

.dots {
  color: black;
  font-weight: bold;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #000000;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: black;
  border-radius: 50%;
  display: block;
}

.active, .dot:hover {
  background-color: black;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
h3{
	font-size: 18pt;
	font-weight: strong;
	text-align: center;
	font-family: calibri;
	color: #015D93;
}
.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}
.accordion-item {
  background-color: #015D93;
  color: #FEFEFE;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}
.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  background-color: #015D93;
}
.accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}
.accordion-item-header.active::after {
  content: "\2212";
}
.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #78AD72, transparent) 1;
  background-color: #FFFFFF;
}
@media(max-width:767px) {
  html {
    font-size: 14px;
  }
}
.table {
	margin: auto;
}
.content-table {
    border-collapse: collapse;
    margin: auto;
    font-size: 0.9em;
    min-width: 200px;
    border-radius: 20px 20px 20px 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.60);
}

.content-table thead tr {
    background-color: #015D93;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.content-table th,
.content-table td {
    padding: 12px 15px;
	border-bottom: 4px solid #dddddd;
	border-right: 4px solid #dddddd;
	border-left: 4px solid #dddddd;
}

.content-table tbody tr {
    border-bottom: 4px solid #dddddd;
	border-right: 4px solid #dddddd;
	border-left: 4px solid #dddddd;
	
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
    border-bottom: 6px solid #dddddd;
}

.content-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}