.site-header-wrap {
	margin-bottom:60px;
	border-bottom:1px solid #cd9ad6;
}

/*----- Accordion -----*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

.accordion {
	overflow:hidden;
	border-radius:3px;
	background:#f7f7f7;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	padding:10px;
	display:inline-block;
	border-bottom:1px solid #ADADAD;
	transition:all linear 0.15s;
	/* Type */
	font-size: 1.1em;
	color:#000;
	background: #feffe8;
	background: -moz-linear-gradient(top, #feffe8 0%, #d6dbbf 100%);
	background: -webkit-linear-gradient(top, #feffe8 0%,#d6dbbf 100%);
	background: linear-gradient(to bottom, #feffe8 0%,#d6dbbf 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#feffe8', endColorstr='#d6dbbf',GradientType=0 );
}

.accordion-section-title.active, .accordion-section-title:hover {
	background:#0088cc;
	text-decoration:none;
	color:#fff;
}

.accordion-section-title:before
{
	font-family: FontAwesome;
	content: "\f196";
	padding:10px;
	font-size: 13px;
}

.accordion-section-title.active:before
{
	font-family: "FontAwesome";
	content: "\f147";
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:0 15px;
	display:none;
	overflow-y:scroll;
	max-height:250px;
}

.accordion-content-cls {
	font-family: 'Carlito', 'Open Sans', Calibri, sans-serif;
	margin:10px;
	padding:0px 0px 13px 0px; 
	font-size:16px;
	vertical-align:top;	
}

.accordion-inner-cls {
	height:150px;	
}

.accordion-content-cls .accbox1 {
	float:left; 
	width:5%;
}

.accordion-content-cls .accbox2 {
	float:left; 
	width:75%;
}

.accordion-content-cls .accbox3 {
	float:left; 
	width:10%;
	padding-bottom:5px;
}

@media (max-width: 480px) {
	.accordion-content-cls .accbox1 {
	float:left; 
	width:12%;
}

.accordion-content-cls .accbox2 {
	float:left; 
	width:88%;
}

.accordion-content-cls .accbox3 {
	float:right; 
	width:30%;
	padding-bottom:5px;
}
}