.acc {
  position: relative;
  background-color: #ffffff;
}
.acc dl {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.acc dl:after {
  content: "";
  display: block;
  height: 2em;
  width: 100%;
}

.acc dt > a {
  text-align: center;
  font-weight: 600;
  padding: 0.5em;
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;

}
.acc dd {
  background-color: white;
  font-size: 1em;
  line-height: 1.5em;
  -webkit-background-clip: text;
}
.acc dd > p {
  color: black;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 5px 0 0 0;
}

.container1 {
  max-width: 1050px;
  margin: 0 auto;
  padding: 5px 0 0 0;
}
.acc_title {
  color:white;
  background-image:url(http://empresa01.biz/etweb/tec/placacopia.jpg);

}


.acc_title:before {
  content: "+";
  font-size: 1.5em;
  line-height: auto;
  float: left;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.acc_title:hover {
  background-color: #277b3a;
}

.acc_title_active {
  background-color: #277b3a;
}
.acc_title_active:before {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);

}

.acc_panel {
  height: 700px;
  overflow: auto;

}

.acc_panel1{
    height:auto;
    overflow:auto;
}

.acc_panel2 {
  height: auto;
  overflow: auto;

}

@media all {
  .acc_panel {
    max-height: 25em;
    -webkit-transition: max-height 1s;
    transition: max-height 1s;
  }
}
@media screen and (min-width: 48em) {
  .acc_panel {
    max-height: 10em;
    -webkit-transition: max-height 0.5s;
    transition: max-height 0.5s;
  }

}

.acc_panel_col {
  max-height: 0;
}

.anim_in {
  -webkit-animation-name: acc_in;
          animation-name: acc_in;
  -webkit-animation-duration: 0.65s;
          animation-duration: 0.65s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.anim_out {
  -webkit-animation-name: acc_out;
          animation-name: acc_out;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes acc_in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes acc_in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes acc_out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@keyframes acc_out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
