﻿/*----- Accordion -----*/
.accordion, .accordion * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.accordion {
    overflow: hidden;
    box-shadow: 10px 10px 10px lightgrey;
    border-radius: 5px;
    background-color: white;
    width: 100%;
}

/*----- Section Titles -----*/
.accordion-section-title {
    width: 100%;
    padding: 5px;
    display: inline-block;
    border-bottom: 5px solid whitesmoke;
    background: #F15D54;
    transition: all linear 0.15s;
    font-size: 15px;
    color: #fff!important;
    text-shadow: 0px 0px 1px white;
}

    .accordion-section-title.active, .accordion-section-title:hover {
        background: #F5844C;
        text-decoration: none;
    }

/*----- Section Content -----*/
.accordion-section-content {
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: none;
    font-size: 12px;
}

/*----- Section Content Title -----*/
.accordion-section-content-title-child {
    transition: all linear 0.15s;
    font-size: 15px;
    color: black;
}

.accordion-section-content-title-child.active, .accordion-section-content-title-child:hover {
    background: none;
    text-decoration: none;
}

.accordion-section:last-child .accordion-section-title {
    border-bottom: none;
}

div.accordian-Outer {
    position: relative;
    clear: both;
}

div.accordian-InnerLeft {
    width: 20%;
    position: relative;
    background: #CCCCCC;
    float: left;
}

div.accordian-InnerRight {
    width: 80%;
    position: relative;
    float: right;
    padding-left: 20px;
}