/*
*
*    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 */
.ac1chat {
    font-family:Arial, Helvetica, sans-serif; 
    margin:0 auto;
    font-size:12px;
    
    border:1px solid #e1e1e1;
    border-radius:10px;
    width:440px;
    padding:5px;
    background:#fff;
}
.ac1chat ul {
    list-style:none;
    margin:0;
    padding:0;    
}
.accordion li {
    margin:0;
    padding:0;
}
.ac1chat [type=radio], .ac1 [type=checkbox] {
    display:none;
}
.ac1chat label {
    display:block;
    font-size:13px;


font-weight:bold;

    line-height:12px;
    background:#73a1da;
    border:1px solid #e1e1e1;
    color:#ffffff;
   
    font-weight:550;
    cursor:pointer;
    
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
}
.ac1chat ul li label:hover, .ac1chat [type=radio]:checked ~ label, .ac1chat [type=checkbox]:checked ~ label {
    background:#cc0000;
    color:#ffffff;
   
}
.ac1chat .content {
    padding:0 0px;
    overflow:hidden;
    border:1px solid #e1e1e1; /* Make the border match the background so it fades in nicely */
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;




}
.ac1chat p {
    color:#333;
    margin:0 0 0px;
}
.ac1chat h3 {
    color:#542437;
    padding:5;
    margin:0px 0;
}


/* Vertical */
.vertical ul li {
    overflow:hidden;
    margin:0 0 1px;
}
.vertical ul li label {
    padding:10px;
}
.vertical [type=radio]:checked ~ label, .vertical [type=checkbox]:checked ~ label {
    border-bottom:0;
}
.vertical ul li label:hover {
    border:1px solid #e1e1e1; /* We don't want the border to disappear on hover */
}
.vertical ul li .content {
    height:0px;
    border-top:0;
}
.vertical [type=radio]:checked ~ label ~ .content, .vertical [type=checkbox]:checked ~ label ~ .content {
    height:auto;
    border:1px solid #e1e1e1;
}

















