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

/* Requirements */

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

#only-one
{
    width: 100% !important;
    padding-left: 15px;
    margin-top: 1em;
}

/* Basic Theme */

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

[data-control],
[data-content] > * {
    border-bottom: 1px solid #796f60;
    padding: 10px 10px 10px 15px;
    font-size: 15px;
    color: #796f60;
    font-family: sans-serif;
    line-height: 1.6em;
}

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

[data-accordion] [data-control] {
    position: relative;
    
    padding-right: 30px;
    font-family: sans-serif;
}

[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-size: 50%;
}

[data-accordion].open > [data-control]:after {
    -webkit-transform: rotate(-180deg); 
    -ms-transform: rotate(-180deg); 
    transform: rotate(-180deg); 
}
.arrow01 {
     display: block;
     width: 10px;
     height: 10px;
     border-top: solid 1px #796f60;
     border-right: solid 1px #796f60;
     -webkit-transform: rotate(135deg);
     transform: rotate(135deg);
    position: absolute;
    right: 10px;
    top:13px;
}