/*!
 * jQuery Accordion 0.0.1
 * (c) 2014 Victor Fernandez <victor@vctrfrnndz.com>
 * MIT Licensed.
 */

/* Requirements */

[data-accordion] [data-content] {
	overflow: hidden;
	max-height: 0;
	border: 1px solid #ddd;
	border-top: none;
}

/* Basic Theme */

button  >h4 {
  font-size: 14px;
  color: #fff;
}

[data-accordion] {
 line-height: 1;
}
 [data-control], [data-content] > * {
 border-bottom: 1px solid #888;
 padding: 10px;
}
 [data-content] [data-accordion] {
 border: 0;
 padding: 0;
}
 [data-accordion] [data-control] {
 position: relative;
 padding-right: 40px;
 background: none;
 width: 100%;
 text-align: left;
 background: #24621F;
 color: #fff;
 border: none;
}
 [data-accordion] > [data-control]:after {
 content: "";
 position: absolute;
 right: 10px;
 top: 12px;
 font-size: 25px;
 font-weight: 200;
 color: #444;
 height: 15px;
 width: 24px;
 background: url('../images/down.png') center center no-repeat;
 background-size: 38%;
}
[data-accordion].open > [data-control]:after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

[data-control]  a {
	color:#fff !important;
}
