/*
*
*    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: 934px; */
}
.accordion ul {
    list-style:none;
    margin:0;
    padding:0;    
}
.accordion li {
    margin:0;
}
.accordion [type=radio], .accordion [type=checkbox] {
    display:none;
}
.accordion label {
    display:block;
    font-size: 18px;
    line-height: 17px;
    color: #bf0a43;
    /* text-shadow: 1px 1px 1px rgba(0,0,0,0.3); */
    /* font-weight:700; */
    cursor:pointer;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
	
    background-color: #eec680;
	
    background-size: 100%;
    background: transparent url(xgenexus.png) no-repeat left;
}
.accordion ul li label:hover, .accordion [type=radio]:checked ~ label, .accordion [type=checkbox]:checked ~ label {
    background: #ebb65a;
    color: #80062d;
	background: transparent url(xgenexus.png) no-repeat left;
	margin-left: 5px;
    /* 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;
    margin-top: -11px;  
    font-size: 17px;
}
.accordion p {
    color:#000000;
    margin: 10px 0 10px;
    /* text-align: justify; */
    line-height: 18px;
}
.accordion h3 {
    color:#000000;
    padding:0;
    margin:10px 0;
}


/* Vertical */
.vertical ul li {
    overflow:hidden;
    margin: -17px 0 10px 0px;
}
.vertical ul li label {
    padding: 13px 0px 13px 37px;
}
.vertical [type=radio]:checked ~ label, .vertical [type=checkbox]:checked ~ label {
    border-bottom:0;
	
    background-color: #ebb65a;
    background-size: 7%;
    background: transparent url(xgenexus.png) no-repeat left;
}
.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;
    background-color: transparent !important;
}

/* ----- Scrollbar ----- */
::-webkit-scrollbar-thumb:vertical {
    height: 0px;
    background-color:#F6951C;
    border-radius: 10px;
    cursor: pointer;
}
::-webkit-scrollbar-thumb:vertical:active {
    height: 0px;
    background-color:#F6951C;
    cursor: pointer;
}
::-webkit-scrollbar {
    width: 14px;
    height: 0;
    background: transparent;
    margin-right:5px;
    transition: all 0.5s;
    cursor: pointer;
} 
::-webkit-scrollbar:active {
    background-color: transparent;
    cursor: pointer;
}