.smk_accordion {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 0px;
}
/**
 * --------------------------------------------------------------
 * Section
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in {
  position: relative;
  z-index: 1;
  overflow: hidden;
	margin-bottom: 1px;
    border-bottom: 1px solid #ccc;
}
.smk_accordion .accordion_in:last-child
{
	border-bottom: 0;
}
/**
 * --------------------------------------------------------------
 * Head
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in .acc_head {
  position: relative;
  background: transparent;
  padding: 20px 45px;
  font-size: 16px;
  display: block;
  cursor: pointer;
	font-family: 'Roboto Slab', serif;
	    color: #4b535a;
    font-weight: 400;
	line-height: 18px;
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand {
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -9px;
  background: url(../images/plus.png) no-repeat;
}
/**
 * --------------------------------------------------------------
 * Content
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in .acc_content {
  
  padding:5px 45px 40px 45px;
	font-size: 16px;
	
}
.smk_accordion .accordion_in .acc_content p
{
	line-height: 26px;
	text-align: justify;
	font-weight: 300;
	color: #555555;
}
.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 {
    
}
.smk_accordion .accordion_in.acc_active > .acc_head .acc_icon_expand {
  background: url(../images/minus.png) no-repeat top 7px left 0;
}
.smk_accordion.acc_with_icon .accordion_in .acc_head
{
 /* padding-left: 63px;*/
}
