/*
*
*    Author:    Michael Raffaele <michael@mraffaele.com>
*    Date:    25th October 2011
*    Info:     http://www.mraffaele.com/blog/2011/10/25/css-accordion-no-javascript/
*
*/
.accordion {
    font-family:Arial, Helvetica, sans-serif; 
    margin:0 auto;
    font-size:14px;
    /*border:1px solid #542437;*/
    /*border-radius:10px;*/
    /*width:600px;*/
    /*padding:10px;*/
    background:#fff;
}

.accordion [type=checkbox] {
    display:none;
}

.accordion label {
    display:block;
    font-size:16px;
    line-height:16px;
    background:#747474;
    border:1px solid #542437;
    color:#FFF;
    text-shadow:1px 1px 1px rgba(255,255,255,0.3);
    font-weight:700;
    cursor:pointer;
    text-transform:uppercase;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
}

.accordion label:hover, .accordion [type=checkbox]:checked ~ label {
    background:#C9C9C9;
    color:#FFF;
    text-shadow:1px 1px 1px rgba(0,0,0,0.5)
}
.accordion .accordion-content {
    padding:0 10px;
    overflow:auto;
    border:1px solid #fff; /* Make the border match the background so it fades in nicely */
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
}
.accordion p {
    color:#333;
    margin:0 0 10px;
}
.accordion h3 {
    color:#542437;
    padding:0;
    margin:10px 0;
}

/* Vertical */
.vertical  {
    overflow:hidden;
    margin:0 0 1px;
}
.vertical label {
    padding:10px;
}
.vertical [type=checkbox]:checked ~ label {
    border-bottom:0;
}
.vertical label:hover {
    border:1px solid #542437; /* We don't want the border to disappear on hover */
}
.vertical .accordion-content {
    height:0px;
    border-top:0;
	padding:0px 5px;
}
.vertical [type=checkbox]:checked ~ label ~ .accordion-content {
    height:300px;
    border:1px solid #542437;
}