:root{
    --color-brand: #005eae;
    --color-brand-light: #06C;
}
.contentarea{
    font-family: Verdana, Geneva, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    color: #000000;
    text-align: left;
    padding: 30px 50px 50px 50px;
    margin-top: 0px;
    margin-bottom: 0px;
    height: auto;
}
.contentarea h1{
    font-family: Verdana, Geneva, sans-serif;
    font-size: 16px;
    letter-spacing: 0.2px;
    color: var(--color-brand);
    text-align: left;
    margin-top: 20px;   
}


details {
  margin: 10px 0;
}
details > * {
  padding: .75rem 40px .75rem .75rem;
}
details > div {
  background: #fff;
  border-radius: 0 0 5px 5px;
}
summary {
  border-radius: 5px;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: bold;
  color: #fff;
  background: var(--color-brand);
  cursor: pointer;
  position: relative;
  transition: .3s;
  text-indent: 0px;
}
summary h2{
    font-size: 16px;
    margin: 0;
}
summary p{
    font-size: 13px;
    margin: 0;
    font-weight: normal;
}
summary::marker {
  content: "";
}
summary::before {
    content:"+";
    position:absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 30px;
    text-align: center;
}
details[open] summary::before {
  content:"–";
}
details[open] summary {
  border-radius: 5px 5px 0 0;
  background: var(--color-brand-light);
}


