<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Document */

ul.faqList {
	width: 100%;
	padding: 0px;
}

ul.faqList &gt; li {
	padding: 5px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 15px;
	list-style-type: none;
}

ul.faqList li h3 {
  padding: 10px 5px;
  cursor: pointer;
  position: relative;
  font-size: 17px;
  color: #474747;
  font-weight: normal;
}

ul.faqList li h3 b {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-style: italic;
  margin-right: 10px;
  color: #333;
}

ul.faqList li h3 a.toggleOpen {
	cursor: pointer;
	display: block;
	margin-top: -13px;
	padding: 4px 8px;
	border-radius: 3px;
	font-size: 13px;
	color: #FFF;
	position: absolute;
	right: 5px;
	top: 50%;
	background-color: #02428a;
}

ul.faqList li .definition {
  display: none;
  margin-top: 10px;
  padding: 15px;
  background: #E7E7E7;
  font-size: 17px;
  color: #686868;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .contentBox .leftBox {
    float: none;
    width: 100%;
    padding: 0;
  }
  .contentBox .rightBox {
    float: none;
    width: 100%;
    margin-top: 30px;
  }
  ul.faqList li h3 a.toggleOpen {
    position: static;
    margin: 0;
    margin-top: 10px;
    padding: 10px 0;
    text-align: center;
  }
}
</pre></body></html>