/*!
 * 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-accordion]:last-of-type.open {
    padding-bottom: 10px;
}

.bar_content {
	overflow: hidden;
	padding: 20px;
	padding-top: 25px;
    padding-bottom:50px;
}

.bar_content > div {
	margin: 15px 0;
	line-height: 1.5;
}

.bar_content span:first-of-type {
float: left;
margin-right: 15px;
}

.bar_content span:last-of-type {
	overflow: hidden;
	display: block;
}

.bar_content [data-accordion]:last-of-type.open {
    padding-bottom: 0;
}

[data-control] {
    border-top: 1px solid #cccccc;
    padding: 10px 10px 10px 15px;
	cursor: pointer;
}

h3[data-control] {
line-height:1.2;	
}

.acc {
	margin-bottom: 50px;
}

.acc section:not(:last-of-type) .bar_content {
   /* border-bottom: 1px solid #cccccc;*/
}

/*.open [data-control], .open [data-content] > * {
border: none;
}*/

[data-content] [data-accordion] {
    /*    border: 0;
    padding: 0;*/
    
    line-height: 1.5;
}

[data-accordion] [data-control] {
    position: relative;
    padding-right: 40px;
	margin-bottom: 0;
	margin-top: 0;
}

[data-accordion] [data-control]:hover { opacity:0.7;}

[data-accordion] > [data-control]:after {
        content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    font-size: 25px;
    font-weight: 200;
    color: #444;
    height: 22px;
    width: 21px;
    background: url('../../img/EN/plus.png') center center no-repeat;
    margin-top: -11px;
}

[data-accordion].open > [data-control]:after {
    background: url('../../img/EN/minus.png') center center no-repeat;
}