/**Body, heading, and ul styles **/
body {
  background: #F5F5F5;
  font-family: 'Helvetica', sans-serif;
  font-size: 1em;
}
h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.0em;
  font-weight: 400;
  margin-top: 25px;
}
h2 {
  font-size: 1em;
}
ul {
  list-style: none;
}
h2, h3, h4, h5, h6, p {
  margin-top: 10px;
}
p, li {
  line-height: 1.25; /**Styles space between accordion sections **/
  margin: 0 0 16px;
}
button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**Accordion Styles **/
.accordion {
  width: 100%;
  max-width: 800px;
  min-width: 275px;
  margin: auto;
}
.accordion button {
  outline: none;
  padding: 5px;
  border: none;
  border-bottom: 1px solid darkslategrey;
  color: white;
  width: 100%;
  text-align: left;
  font-size: 1.5em;
  border-radius: 1px;
}
.accordion button:focus {
  border-radius: 0px;
  outline: none;
}
.accordion li {
  border: #D9D9D9;
  background-color: #ffffff;
}
/**Assign a color to each section **/
.accordion .accordion-controls #accordion-control-1 {
  background-color: #56748A;
}
.accordion .accordion-controls #accordion-control-2 {
  background-color: #6C80AA;
}
.accordion .accordion-controls #accordion-control-3 {
  background-color: #1F419A;
}
.acc-item:last-child {
  border-bottom: 1px solid DarkSlateGray;
}
.accordion button::after {
  content: "\002B";
  font-weight: 900;
  font-size: 22px;
  float: right;
}
.acc-item-content {
  max-height: 0;
  border-left-style: solid;
  border-left-width: thin;
  border-left-color: lightgrey;
  padding: 0px 10px;
  box-shadow: 2px 4px 4px -2px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  /**transition: 2s all ease;**/
  transition: max-height 0.3s ease-out;
}
.acc-item-content ul {
  list-style-type: disc;
  margin: 10px 0 0.9em 0;
  padding-bottom: 0;
  margin-bottom: 0.9em;
}
.acc-item-content ul.no-bullet {
  list-style-type: none;
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}
.accordion button.active:after {
  content: "\2212";
  font-weight: 900;
  color: black;
  font-size: 22px;
  float: right;
}
/**CSB focus **/
.accordion-trigger {
  background: none;
  color: white;
  display: block;
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  padding: 1em 1.5em;
  position: relative;
  text-align: left;
  width: 100%;
  outline: none;
}
.acc-heading {
  display: inline;
  pointer-events: none;
  border: transparent 2px solid;
  border-radius: 5px;
  padding-right: 30%;
  color: white;
  /**font-size:1.25em;**/
  outline: none;
}

.accordion-trigger:focus .acc-heading {
	border-color: white;
}

.imgresponsive {
  padding-top: 10px;
  width: 15%;
  height: auto;
}