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

/* Requirements */

[data-accordion] [data-content] {
  overflow: hidden;
  max-height: 0;
}

/* Basic Theme */

[data-accordion] {
  line-height: 1;
}

[data-control],
[data-content] > * {
  border-bottom: 1px solid #fff;
  padding: 10px;
}

[data-content] [data-accordion] {
  border: 0;
  padding: 0;
  padding-left: 10px;
}

[data-accordion] [data-control] {
  position: relative;
  padding-left: 30px;
  display: block;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
}

[data-accordion] > [data-control]:after {
  content: "+";
  position: absolute;
  left: 10px;
  top: 5px;
  font-size: 25px;
  font-weight: 200;
  color: #444;
  height: 15px;
  width: 24px;
  /* background: url('../images/down.png') center center no-repeat;
    background-size: 50%; */
}

[data-accordion].open > [data-control]:after {
  /* -webkit-transform: rotate(-180deg); 
    -ms-transform: rotate(-180deg); 
    transform: rotate(-180deg);  */
  content: "-";
  top: 5px;
}
[data-accordion].open > a {
  color: #007000;
  font-weight: 700;
}
a.noarrow:after {
  display: none;
}
a.noarrow:before {
  position: absolute;
  left: 15px;
  top: 14px;
  content: "";
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 100%;
  /* content: "_";
    position: absolute;
    left: 15px;
    top: 10px;
    color: #000; */
}
a.active1 {
  color: #ec268f;
}
a.active1:before {
  background-color: #ec268f;
}
article a {
  width: 100%;
  display: block;
}
