/*------------------------------------*\
-------- Page Styles: Accordion
\*------------------------------------*/
@font-face {
    font-family: myFont;
    src: url(../../fonts/EkMukta-Regular.ttf);
    /*font-weight: bold;*/
}
body 
{
   font-family: 'myFont';
	position:relative;
	z-index:0;
}
.main:before {
	width:100%;
	height:100%;
	position:absolute;
	top:0px;
	left:0px;
	z-index:-1;
	content:'';
	background:-webkit-radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
	background:-moz-radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
	background:-o-radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
	background:radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
}

.site-header-wrap {
	margin-bottom:60px;
	border-bottom:1px solid #cd9ad6;
}

/*------------------------------------*\
-------- DEMO Code: accordion
\*------------------------------------*/
/*----- Accordion -----*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

.accordion {
	overflow:hidden;
	box-shadow:0px 1px 3px rgba(0,0,0,0.25);
	
	background:#f7f7f7;
	
	margin-bottom:2px;
}

/*----- 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:1.200em;
	
	color:#333;
}
.accordion-section-title:hover { border-left: 10px solid #B95E1E; }
.accordion-section-title.active, .accordion-section-title:hover {
	
	/* Type */border-left: 10px solid #B95E1E;
	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%; margin-top:-5px; width:9px; 
                    height:9px; background: url(../Images/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;
}



.accordion-section-title { position:relative; background-color: #d8dfe4; /*background: rgba(0, 0, 0, 0.1);*/ cursor: pointer; font-weight: bold; margin-top:5px;  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(../images/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: 5px solid #B95E1E; }
.accordion-section-title.active:after { transform: rotate(180deg); -webkit-transform: rotate(180deg); }
.accordion-section-title h3 { font-size: 1.2em; 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; }