/*
*
*    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: 480px;
}
.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: 22px;
    color: #ffffff;
    cursor:pointer;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
	
	
    background: #6d2520 url('sombra.png') no-repeat;  background-size: 16%;  border-radius: 13px;
}
.accordion ul li label:hover, .accordion [type=radio]:checked ~ label, .accordion [type=checkbox]:checked ~ label {
    background: #6d2520 url('sombra.png') no-repeat;  background-size: 16%;  border-radius: 13px;
    color:#FFF;
}
.accordion .content {
    padding:0 10px;
    overflow:hidden; /* 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: 17px;
}
.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 {
	
    background: #6d2520 url('sombra.png') no-repeat;
    background-size: 16%;
    border-radius: 13px;
}
.vertical ul li label:hover {
    
}
.vertical ul li .content {
    height:0px;
}
.vertical [type=radio]:checked ~ label ~ .content, .vertical [type=checkbox]:checked ~ label ~ .content {
    height: auto; //208px;
}