/*------------------------------------*\
-------- Page Styles: Accordion
\*------------------------------------*/
/*----- Accordion -----*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

.accordion {
	overflow:hidden;	
	
	background:#f7f7f7;
	
	margin-bottom:10px;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	padding:15px;
	display:inline-block;
	border-bottom:1px solid #1a1a1a;
	
	transition:all linear 0.15s;
	/* Type */
	font-size:1em;
	
	color:#fff;
}
.accordion-section-title:hover { border-left: 10px solid #d94148;color:#000; }
.accordion-section-title.active, .accordion-section-title:hover {
	
	/* Type */border-left: 10px solid #d94148;
	text-decoration:none;
}
.accordion-section-title.active:after { transform: rotate(180deg); -webkit-transform: rotate(180deg); }
.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
	
}
.accordion-section-title:after { content: ""; bottom: 0; 
                    position: absolute; 
                    right:15px; 
                    top:50%;
                    width:9px; 
                    height:9px; 
                    background: url(img/down-arrow.png) no-repeat center center; 
                    transition: all 0.4s ease 0s; 
                    -webkit-transition: all 0.4s ease 0s; }
/*----- Section Content -----*/
.accordion-section-content {
	
	display:none; padding:10px 20px; border-bottom: 1px solid #ccc; border-left: 1px solid #ccc; border-right: 1px solid #ccc;
	background: url(../images/newsbg.jpg) no-repeat;

background-size: cover;
}



.accordion-section-title { position:relative; background-color: #f9a416;  cursor: pointer; font-weight: bold; transition:all 0.4s ease 0s; -webkit-transition: all 0.4s ease 0s; }
.accordion-section-title:after { content: ""; bottom: 0; position: absolute; right:15px; top:50%; margin-top:-5px; width:9px; height:9px; background: url(img/down-arrow.png) no-repeat center center; transition: all 0.4s ease 0s; -webkit-transition: all 0.4s ease 0s; }
.accordion-section-title.active, .accTrigger:hover { border-left: 10px solid #d94148; }
.accordion-section-title.active:after { transform: rotate(180deg); -webkit-transform: rotate(180deg); }
.accordion-section-title h3 { font-size: 1.1em; font-weight:normal; position:relative; margin:0; padding:0 30px 0 15px; color:#333; }
.accordion .accTrigger h3 { margin-bottom:0; }
.noJS .accordion .accTrigger { }
.accordion .accordion-section-title a { display:block; text-decoration:none; outline:0 }
.noJS .accordDetail { display:block; }