
.smk_accordion {
	float:left;
	position: relative;
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	font-family: 'Open Sans', sans-serif;
}

.smk_accordion .accordion_in {
	position: relative;
	z-index: 10;
	overflow: hidden;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
.smk_accordion .accordion_in:hover .acc_head {
	color: #000;
}
.acc_active .acc_head {
	color: #000;
}
.smk_accordion .accordion_in .acc_head {
	padding: 5px 0 5px 0;
	margin:0;
	position: relative;
	display: block;
	font-family: 'Open Sans', sans-serif;
	color: #0fa1c6;
	font-size: 14px;
	line-height: 20px;
	cursor: pointer;
}
.smk_accordion .accordion_in .acc_head .acc_icon{
	width: 20px;
	height: 20px;
	float:left;
	margin:3px 0 0 0;
	background:url(../images/icon-double-arrows.png) no-repeat;
}
.smk_accordion .acc_active .acc_head .acc_icon{
	background:url(../images/icon-double-arrows-down.png) no-repeat;
}

.smk_accordion .accordion_in .acc_content {
	width: 100%;
	display: block;
	padding:0 0 16px 20px;
	font-size: 13px;
	color: #58595b;
	line-height: 22px;
	font-family: 'Open Sans', sans-serif;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
}


