h1 {
  text-align: center;
  color: #337ab7;
  margin-bottom: 2em;
}
.acordeon  {
  width: 90%;
  margin: auto;
}
.acordeon__titulo{
  color: #000000;
  background: #ffffff;
  line-height: 2.2;
 /*padding: 0 1em;*/
  font-size: 18px;
  margin: 0;
  border-radius: 0%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -1px 0 0 #fff inset;
  /*text-shadow: 1px 1px #000;*/
  cursor: pointer;

  text-transform: none;
  text-align: left;
  padding-left: 20px;
  position: relative;
  display: block;
  font-weight: bold;
}
.acordeon__contenido {
  display: none;
  margin: 0;
  /*background: #4c4698;*/
  padding: 1em 1em 1.5em;
  text-align: left;
  color:#000000;
}


.acordeon__titulo-active {
   background: #1a95d5;
   color: #fff;
}

.acordeon__titulo:hover {
    background: #ffffff;
}


.acordeon__contenedor{
    width: 100%;
    clear:both;
}