/*
*
*    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: 965px;
}
.accordion ul {
    list-style:none;
    margin:0;
    padding:0;    
}
.accordion li {
    margin: -11px;
    padding:0;
}
.accordion [type=radio], .accordion [type=checkbox] {
    display:none;
}
.accordion label {
    display:block;
    font-size: 18px;
    line-height: 17px;
    color: #fff;
    /* text-shadow: 1px 1px 1px rgba(0,0,0,0.3); */
    cursor:pointer;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
	
    background-color: #e85811;
	background-size: 7%;
    border-radius: 4px;
    box-shadow: 0px 0px 7px -1px #000;
    margin: 6px 5px 5px 5px;
}
.accordion ul li label:hover, .accordion [type=radio]:checked ~ label, .accordion [type=checkbox]:checked ~ label {
    background: #e85811;
    color: #fff;
    /* text-shadow:1px 1px 1px rgba(0,0,0,0.5); */
}
.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: 18px;
    font-weight: bold;
}
.accordion h3 {
    color:#542437;
    padding:0;
    margin:10px 0;
}


/* Vertical */
.vertical ul li {
    overflow:hidden;
    /* margin: 10px 0 1px; */
}
.vertical ul li label {
    padding: 15px;
}
.vertical [type=radio]:checked ~ label, .vertical [type=checkbox]:checked ~ label {
    border-bottom:0;
	
    background-color: #e85811;
    background-size: 7%;
}
.vertical ul li label:hover {
    
}
.vertical ul li .content {
    height:0px;
}
.vertical [type=radio]:checked ~ label ~ .content, .vertical [type=checkbox]:checked ~ label ~ .content {
    height: 82px;
    background-color: transparent !important;
    margin-top: -11px;
    margin-bottom: 9px;
}