div.accordion {
	position: relative;  
}

.accordion-heading-container {
    position:relative;
    text-transform:uppercase;
    color:black;
    font-size:19px;
    margin-bottom:40px;
    font-family: Georgia,Arial;
}

div[id|=cls-accordion] ~ div.accordion-heading-container {
    margin-top:60px;
}

div[id|=cls-accordion] img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.accordion-heading-container span {
    position:relative;
    z-index:2;
    background:#FFF;
    padding-right:20px;
}

.accordion-heading-container:before {
    content: "";
    display: block;
    border-top: 1px solid #EBEBEB;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    z-index: 1;
}

div.accordion-toggle {
    position: relative;  
    z-index: 10;	 
	background: #eee;   
    cursor: pointer;
    background: url(../images/cls-plus.png) no-repeat center left;	
    padding:10px 0 10px 20px;
    border-bottom: 1px solid #E6E6E6;
    text-transform:uppercase;
    color:black;
    font-family: Georgia,Arial;
}

div.accordion-toggle-active {
	background: url(../images/cls-minus.png) no-repeat center left!important;
    border-bottom: none;
}

div.accordion-content{
    overflow: hidden;	
    padding-left:20px;
    border-bottom: 1px solid #E6E6E6;
}