/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/****************************************/
/* HubSpot Style Boilerplate            */
/****************************************/

/* These includes are optional, but helpful. */


/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.accordion, .accordion * {
 -webkit-box-sizing:border-box; 
 -moz-box-sizing:border-box; 
 box-sizing:border-box;
}
 
.accordion {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #efefef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px !important;
}
 
/*----- Section Titles -----*/
.accordion-section-title {
    color: #484848;
    display: inline-block;
    font-size: 16px;
    padding: 15px;
    text-decoration: none;
    transition: all 0.15s linear 0s;
    width: 100%;
}
 
.accordion-section-title.active, .accordion-section-title:hover {
 background:#a3cf10;
 /* Type */
 text-decoration:none;
}
 
.accordion-section:last-child .accordion-section-title {
 border-bottom-color:white;
 padding-bottom:12px;
}
 
/*----- Section Content -----*/
.accordion-section-content {
 padding:15px;
 display:none;
}