.expandbutton {
  padding-top: 3px;
  margin-top: 6px;
  background-color: #082958; /*#0c64c9*/
  border-radius: 7px;
  color: white;
  cursor: pointer; 
  width: 220px;
  height:24px;
  text-align: left;
  font-size: 12px;
  font-weight:bold;
  border: none;
  outline: none;  transition: 0.4s;
}
 
.expandbutton:hover {background-color:#195295;} /*#0c64c9*/


.expandbutton:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: left;
  margin-left: 16px;
}
 
 

.active:after {
  content: "\2212";
}


/* Style the accordion panel. Note: hidden by default */
.content { 
  background-color: white;
  display: none;
  overflow: hidden;
  font-size:14px;  
}

.content li {margin-left:-15px;font-size:12px;color:Black;font-weight:bold;  }