.smk_accordion {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
/**
 * --------------------------------------------------------------
 * Section
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in {
  position: relative;
  z-index: 10;
  margin-top: -1px;
  overflow: hidden;
  margin-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
  border-top: none;
  border-left: none;
  border-right: none;
}
/**
 * --------------------------------------------------------------
 * Head
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in .acc_head {
  position: relative;
  /*background: #FDFDFD;*/
  /*padding: 10px;*/
 /* font-family: 'HelveticaNeue-BoldCond', Verdana, Geneva, Tahoma, sans-serif;
  font-size: 22px; 
  color: #333;*/
  display: block;
  cursor: pointer;
  /*padding-top: 20px;*/
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand {
  display: block;
  width: 48px;
  height: 24px;
  position: absolute;
  right: -24px;
  top: 50%;
  margin-top: -25px;
  background: url(../images/toggle.png) center 0;
}
/**
 * --------------------------------------------------------------
 * Content
 * --------------------------------------------------------------
 */
.smk_accordion .accordion_in .acc_content {
  /*background: #F9F9F9;*/
  color: #333333;
  /*padding: 3px 10px;*/
}

.acc_content p {
	/*font-family: 'SegoeUI-Semilight', Verdana, Geneva, Tahoma, sans-serif;*/
	font-size: 15px;
	/*color: #505050;
	background: #f7f8f9;*/
	/*padding: 18px 15px 18px 28px;*/
	padding: 0px 25px 0px 0px;
	margin-bottom: 10px;
}

.acc_content ol li {
	background: url('/images/milestones_bg.png') left 13px no-repeat;
	padding-left: 20px;
	padding-bottom: 18px;
	line-height: 24px;
	text-align: justify;
}

.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: #F9F9F9;*/
}
.smk_accordion .accordion_in.acc_active > .acc_head .acc_icon_expand {
  /*background: url(../images/toggle.png) center -10px;*/
  background: url(../images/toggle.png) 20px center;
}
.smk_accordion.acc_with_icon .accordion_in .acc_head,
.smk_accordion.acc_with_icon .accordion_in .acc_content {
  /*padding-left: 30px;*/
 /* padding-right: 30px;*/
  padding-bottom: 25px;
}

@media screen and (max-width: 420px){
	.smk_accordion .accordion_in .acc_head .acc_icon_expand {
		right: -24px;
		top: 30%;
	}

}
