.accordion {
  padding: 0;
  margin:0;
  width: 100%;
  overflow: hidden;
  font-size: 1em;
  position: relative;
}

		.accordion2 {
			  padding: 0;
			  margin:0;
			  width: 100%;
			  overflow: hidden;
			  font-size: 1em;
			  float:left;
			  
			}
			
					.accordion__title2 {
						  padding: 0 1em;
						  background: #ffffff;
						  color: #222;
						  float: left;
						  line-height: 3;
						  height: 8em;
						  cursor: pointer;
						  margin-right: .25em;
						  
						}
						
						.accordion_ h1 {
							  padding:15px 20px 15px 50px;
							  font-family: 'Acme', sans-serif;
							  font-size: 1.5rem;
							  font-weight: normal;
							  color: #FFF;
							  text-transform:uppercase;
							  box-sizing:border-box;
							  
							}

.accordion_ h1 {
  padding:15px 20px 15px 50px;
  background-color: #15a484;
font-family: 'Acme', sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: #FFF;
  text-transform:uppercase;
  background-image:url(../images/play.png);
  background-repeat:no-repeat;
  background-position:10px center;
  box-sizing:border-box;
  
}

.accordion__title {
  padding: 0 1em;
  background: #f4f4f4;
  border-top: 2px solid #eee;
  color: #222;
  float: left;
  line-height: 3;
  height: 3em;
  cursor: pointer;
  margin-right: .25em;
  
}

.no-js .accordion__title {
  float: none;
  height:auto;
  cursor:auto;
  margin:0;
  padding:0 2em;
}

.accordion__content {
  float: right;
  width: 100%;
  margin: 3em 0 0 -100%;
  padding: 2em;
  background: #f4f4f4;
  box-sizing:border-box;
  display:none;
}

.accordion__content2 {
  float: right;
  width: 100%;
  margin: 8em 0 0 -100%;
  padding: 2em;
  background: #f4f4f4;
  box-sizing:border-box;
  display:none;
}


.no-js .accordion__content {
  float:left;
  margin:0;
}

.accordion__title:hover,
.accordion__title.active {
  background: #014b62;
  color: white;
}

.accordion__title2:hover,
.accordion__title2.active {
  background: #eee;
  color: white;
}

.no-js .accordion__title:hover {
  background-color:#ccc;
  color:#222;
}

.accordion__title.active {
}

@media (max-width: 48em) {
  
  .accordion {
    border: 1px solid grey;
  }
  
  .accordion__title,
  .accordion__content { 
    float: none;
    margin: 0;
  }
  
  .accordion__title:first-child {
    border:none;
  }
  
 .accordion__title.active {
  border-top-color:#eee;
  }
  
  .accordion__title.active, .accordion__title:hover {
    background:#777;
  }
  
  .accordion__title:before {
  content:"+";
  text-align:center;
  width:2em;
  display:inline-block;
  }
 .accordion__title.active:before {
  content:"-";
  }
  
 .overflow-scrolling {
  overflow-y: scroll;
  height:11em;
  padding:1em 1em 0 1em;
  /* Warning: momemtum scrolling seems buggy on iOS 7  */
  -webkit-overflow-scrolling: touch;
  }

  .accordion__content {
    position:relative;
    overflow:hidden;
    padding:0;
  }
  
   .no-js .accordion__content {
    padding:1em;
    overflow:auto;
    display:block;
  }
  
  .accordion__content:after {
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    height:50px;
    border-radius:10px 0 0 10px / 50% 0 0 50%;
    box-shadow:-5px 0 10px rgba(0, 0, 0, 0.5);
    content:'';
}
   
}
