/*!
 * jQuery Accordion 0.0.1
 */

/* Requirements */

[data-accordion-group] article {
	border-bottom: 1px solid rgba(166,202,237,0.2);
    padding: 10px 35px;
    line-height: 1.5;
}

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

/*[data-accordion] [data-content] a:active {
    color: #FF0000;
}*/

/* Basic Theme */

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

[data-control],
[data-content] > * {
    border-bottom: 1px solid rgba(166,202,237,0.2);
    padding: 10px 35px;
    line-height: 1.5;
}

/*.third-level div {
	padding: 0;
}*/

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

[data-accordion] [data-control] {
    position: relative;
    padding-right: 40px;
}

/*[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('../img/down.png') center center no-repeat;
    background-size: 50%;
}*/

[data-accordion] > [data-control]:after {
    font-family: "FontAwesome";
    content: "\f067";
    position: absolute;
    font-size: 16px;
    font-weight: normal;
    color: #59B6C7;
    right: 9%;
    top: 25%;
}

[data-accordion].open > [data-control]:after {
    -webkit-transform: rotate(-180deg); 
    -ms-transform: rotate(-180deg); 
    transform: rotate(-180deg); 
    font-family: "FontAwesome";
    content: "\f068";
}