/*------------------------------------------------------------------------
 # Sj Accordion - Version 1.0
 # Copyright (C) 2011 YouTech Company. All Rights Reserved.
 # @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 # Author: YouTech Company
 # Websites: http://www.smartaddons.com/
 -------------------------------------------------------------------------*/
.sj-accordion  {
	margin:0;
	padding:0;
	overflow: hidden;
}

.sj-accordion .acd-items {
	padding: 0px;
	margin:0;
	background:none;
}

.sj-accordion .acd-items .acd-item{
	margin:10px 0;
	padding:0;
}

.sj-accordion .acd-items .acd-item .acd-header{
	font-size: 18px;
    display: block;
    padding: 18px 0px;
    color: #00396e;
    position: relative;
    cursor: pointer;
    font-family: 'CerebriSans-Bold';
    border-bottom: 1px solid #DDD;
}
.sj-accordion .acd-items .acd-item .acd-header:after {
    content: '\f067';
    font-family: 'Font Awesome Bold';
    position: absolute;
    right: 20px;
    font-size: 16px;
    color: #616161;
    top: 50%;
    transform: translatey(-50%);
}
.sj-accordion .acd-items .acd-item.selected .acd-header:after {
	 content: '\f068';
}
.sj-accordion .acd-items .acd-item.selected .acd-header, 
.sj-accordion .acd-items .acd-item .acd-header:hover {
    color: #007bba;
}
.sj-accordion .acd-items .acd-item .acd-content-wrap{
 	overflow: hidden; 
  	height: 0; 
	width:100%;
	margin-top: 10px;
}

.sj-accordion .acd-content-wrap .acd-content-wrap-inner{
	margin:0;
	padding:0;
	overflow: hidden;
	display: block;
}

