/*----- Accordion -----*/

.accordion, .accordion * {
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    box-sizing:border-box;
    
}
 
.accordion {
    overflow:auto;
    //box-shadow:0px 1px 3px rgba(0,0,0,0.25);
    //border-radius:3px;
    background-color: white;

}
.accordion-section {
    //border-bottom:1px solid #D0D0D0;
    height: auto;
}

/*----- Section Titles -----*/
.accordion-section-title {
    width:      100%;
    padding:    5px;
    display:    inline-block;
    //border-bottom:1px solid #D0D0D0;
    
    /* Type */
    text-decoration: none;
    margin-bottom: 10px;
}

.accordion-section-title h3 {
    font-size:      34px;
    //text-shadow:0px 1px 0px #1a1a1a;
    color:          black;
    transition:     all linear 0.15s;
    border-bottom:  1px solid #D0D0D0;
}

.accordion-section-title h3:active, .accordion-section-title h3:hover {
    //background:#4c4c4c;
    /* Type */
    //text-decoration:none;
    //background-color: #D0D0D0;
    //color: black;
    //text-shadow:    0px 0px 15px rgba(53, 53, 53, 1);
    color:          #00CCFF;
    font-size:      38px;
}
 
.accordion-section:last-child .accordion-section-title {
    border-bottom:none;
}
 
/*----- Section Content -----*/
.accordion-section-content {
    padding:24px;
    display:none;
    text-align: justify;
    font-size: 18px;
    color: grey;
    border-bottom:1px solid #D0D0D0;
    line-height: 32px;
    
}

.accordion-section-title-img {
    height: 120px;
    width: 150px;
    margin-right: 10px;
    margin-bottom: 5px;
    float: left;
    position: relative;
}
