
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

.accordion {
	overflow:hidden;
	/*box-shadow:1px 1px 3px grey;*/
	/*border-radius:10px;*/
	background:#f7f7f7;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	padding:10px 20px;
	display:inline-block;
		border-top:7px solid #ffffff;
	
	background:#eaeaea;  /*#FFF8B8;*/
	transition:all linear 0.15s;
	/* Type */
	/*text-shadow:0px 1px 0px #1a1a1a;
	color:#fff;*/
	outline: 0;
/*font-size: 28px;
  font-family: Abel, Arial, 'Arial Unicode MS', Helvetica, Sans-Serif;*/
}

.accordion-section-title.focus, .accordion-section-title:focus {
	background:#738d61;  /*#FFF8B8;*/
	text-decoration:none;
	outline: 0;
	color: #ffffff;
  /*font-size: 28px;
  font-family: Abel, Arial, 'Arial Unicode MS', Helvetica, Sans-Serif;*/
}

.accordion-section-title.active, .accordion-section-title:hover {
	background:#738d61;
	/* Type */
	text-decoration:none;
	outline: 0;
	color: #ffffff;
  /*font-size: 28px;
  font-family: Abel, Arial, 'Arial Unicode MS', Helvetica, Sans-Serif;*/
}

.accordion-section:first-child .accordion-section-title {
	border-top:none;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:10px 20px;
	display:none;
}