#nestedAccordion {
margin: 10px;
}
#nestedAccordion h2, #nestedAccordion h3, #nestedAccordion div, #nestedAccordion p {
/* reset styles for accordion */
margin: 0;
padding: 0;
font-size: 1em;
font-weight: normal;
}
#nestedAccordion .btn-green {
    display: block;
}
#nestedAccordion div {
display: none;
color: #555;
overflow: hidden;
}
#nestedAccordion h2 {
padding: 5px;
margin-top: 5px;
}
#nestedAccordion h3 {
cursor: pointer;
padding: 5px;
margin-top: 5px;
}
/*#nestedAccordion h4 {
cursor: pointer;
color: #fff;
font-size: 1em;
font-family: Ariel, sans-serif;
padding: 5px;
margin-top: 5px;
margin-bottom: 5px;
background-color: #c5daff;
}*/
#nestedAccordion p {
/*font-family: Ariel, sans-serif;*/
background-color: #F5F5F5;
padding: 5px 5px 5px 30px;
/*font-size: 1em;*/
}
/*.element {
    position: relative;
}*/
 
/*replace the content value with the
corresponding value from the list below*/
 
.accordianClosed:before {
    content: "\f067";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
/*--adjust as necessary--*/
/*    color: #000;
    font-size: 18px;
    padding-right: 0.5em;
    position: absolute;
    top: 10px;
    left: 0;*/
}

.accordianOpen:before {
    content: "\f068";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
/*--adjust as necessary--*/
/*    color: #000;
    font-size: 18px;
    padding-right: 0.5em;
    position: absolute;
    top: 10px;
    left: 0;*/
}