/*
*
*    Author:    Michael Raffaele <michael@mraffaele.com>
*    Date:    25th October 2011
*    Info:     http://www.mraffaele.com/blog/2011/10/25/css-accordion-no-javascript/
*
*/

/* Shared for all accordion types */
.accordion {
    font-family:Arial, Helvetica, sans-serif;
    margin: 0;
    font-size:14px;
    width: 100%;
    background:#fff;
}
.accordion ul {
    list-style:none;
    margin:0;
    padding:0;    
}
.accordion li {
    margin:0;
    padding:0;
}
.accordion [type=radio], .accordion [type=checkbox] {
    display:none;
}
.accordion label {
    display:block;
    font-size: 20px;
    line-height: 27px;
    background: #FFFFFF;
    color: #000000;
    /* text-shadow: 1px 1px 1px rgba(0,0,0,0.3); */
    font-weight:700;
    cursor:pointer;
    background: #FFFFFF url('mais.png') no-repeat left;
    background-size: 4%;
    padding: 0px 0px 0px 40px;
    background-position-x: 11px;
}
.accordion ul li label:hover, .accordion [type=radio]:checked ~ label, .accordion [type=checkbox]:checked ~ label {
    background: #395D8B;
    color: #000;
    /* text-shadow:1px 1px 1px rgba(0,0,0,0.5); */
    border-radius: 16px;
}
.accordion .content {
    padding:0 10px;
    overflow: auto; /* Make the border match the background so it fades in nicely */
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    text-align: justify;
}
.accordion p {
    color:#333;
    margin: 10px 0 10px;
    /* text-align: justify; */
    line-height: 18px;
}
.accordion h3 {
    color:#542437;
    padding:0;
    margin:10px 0;
}


/* Vertical */
.vertical ul li {
    overflow:hidden;
    margin: 10px 0 1px;
}
.vertical ul li label {
    /* padding: 13px; */
}
.vertical [type=radio]:checked ~ label, .vertical [type=checkbox]:checked ~ label {
    border-bottom:0;
    background: #FFFFFF url('menos.png') no-repeat left;
    background-size: 4%;
    padding: 0px 0px 0px 40px;
    background-position-x: 11px;
}
.vertical ul li label:hover {
    color: #FFFFFF;
    font-weight: normal;
}
.vertical ul li .content {
    height:0px;
}
.vertical [type=radio]:checked ~ label ~ .content, .vertical [type=checkbox]:checked ~ label ~ .content {
    height: 135px;
}