@charset "utf-8";
/* CSS Document */

#accordion-container {
	font-size: 13px;
	
	padding: 0;
	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

}

.accordion-header {
	font-size: 16px;
	background: #ebebeb;
	margin: 5px 0 0 0;
	padding: 20px 20px;
	border: 1px solid #cccccc;
	cursor: pointer;
	color: #666666;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
	
	
	
}
h2.accordion-header  {
	font-family:  'Droid Sans' !important;
	font-weight:400 !important;
	font-size:20px;
	 padding-top: 23px;
	color:black;
}
.active-header {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 12px 12px 12px 12px;
	background: url(../images/stripes.png) #cef98d;
	color:#fff;

}

.active-header:hover {
	background: url(../images/stripes-red.png) #cef98d;
	
}

.inactive-header {
	background: url(../images/a_inactive.png) #ebebeb;

}

.inactive-header:hover {
	background: url(../images/stripes-red.png) #f5f5f5;
	color:#fff;

}

.accordion-content {
	display: none;
	min-height:350px;
min-width:100%;
background: #F4F4F4;
border:1px solid #CECECE;
margin-top:5px;

	
	border-radius:15px;

}

.accordion-content-inner {
	padding:20px;
	}