.smk_accordion {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
/**
 * --------------------------------------------------------------
 * Section
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in {
	border-bottom: 1px solid #e5f1f6;
	margin-bottom: 21px;
	margin-top: -1px;
	overflow: hidden;
	position: relative;
	z-index: 10;
	padding-bottom: 18px;
}
/**
 * --------------------------------------------------------------
 * Head
 * --------------------------------------------------------------
 */
 
.acc_content p {
    color: #696e75;
    font-family: karla;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
    padding: 0 0 20px;
}
.smk_accordion .accordion_in .acc_head {
	color: #3f4b5d;
	cursor: pointer;
	display: block;
	font-size: 16px;
	font-weight: bold;
	padding: 10px;
	position: relative;
    font-family: karla;
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand {
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -9px;
  background: url(../images/plusminus.png) center 0;
}
/**
 * --------------------------------------------------------------
 * Content
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in .acc_content {
  background: #e5f1f6;
  color: #7B7E85;
  padding: 3px 10px;
}
.toggle_box .smk_accordion .accordion_in .acc_content {
  background: #f3eecf;
}
.smk_accordion .accordion_in .acc_content h1:first-of-type,
.smk_accordion .accordion_in .acc_content h2:first-of-type,
.smk_accordion .accordion_in .acc_content h3:first-of-type,
.smk_accordion .accordion_in .acc_content h4:first-of-type,
.smk_accordion .accordion_in .acc_content h5:first-of-type,
.smk_accordion .accordion_in .acc_content h6:first-of-type {
  margin-top: 5px;
}
/**
 * --------------------------------------------------------------
 * General
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in:first-of-type,
.smk_accordion .accordion_in:first-of-type .acc_head {
  border-radius: 3px 3px 0 0;
}
.smk_accordion .accordion_in:last-of-type,
.smk_accordion .accordion_in:last-of-type .acc_content {
  border-radius: 0 0 3px 3px;
}
.smk_accordion .accordion_in.acc_active > .acc_content {
  display: block;
}
.smk_accordion .accordion_in.acc_active > .acc_head {
  background: #e5f1f6;
}
.toggle_box .smk_accordion .accordion_in.acc_active > .acc_head {
  background: #f3eecf;
}
.smk_accordion .accordion_in.acc_active > .acc_head .acc_icon_expand {
  background: url(../images/plusminus.png) center -18px;
}
.smk_accordion.acc_with_icon .accordion_in .acc_head,
.smk_accordion.acc_with_icon .accordion_in .acc_content {
  padding-left: 40px;
}
