#accordion-container {
	font-size: 14px;
	width:100%;
	/* background: #ffffff; */
	background: #f0f1ff;;
	padding: 5px 10px 10px 10px;
	border:8px solid rgb(211, 216, 252);
	border-radius: 15px;
	color:#000;
	font-weight: 600;
	/*border: 1px solid #cccccc; */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 20px;
	-moz-box-shadow: 0 5px 15px #cccccc;
	-webkit-box-shadow: 0 5px 15px #cccccc;
	
}

.accordion-header {
	font-size: 16px;
	background: #ebebeb;
	margin: 5px 0 0 0;
	margin-bottom: 15px;
	padding: 5px 20px;
	border: 2px solid #e5ffec;
	cursor: pointer;
	color: #fff;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	box-shadow: rgb(0 0 0 / 40%) 0px 2px 4px, rgb(0 0 0 / 30%) 0px 7px 13px -3px, rgb(0 0 0 / 20%) 0px -3px 0px inset;
}

.active-header {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	background: url(images/active-header.gif) #1bbd36;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.active-header:hover {
	background: url(images/active-header.gif) #1bbd36;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header {
	background: url(images/inactive-header.gif) #343e7d;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header:hover {
	background: url(images/inactive-header.gif) #1bbd36;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.accordion-content {
    width: 100%;
	display: none;
	padding-top: 20px;
	
	/* background: #ffffff; */
/*	background-image:url(../images/library.png);
	background-repeat:no-repeat;
	background-position:center;
	z-index:-10;  */
	border-top: 10;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}
.rotate:hover {
-webkit-box-shadow: 0px 0px 15px 15px #fff;
box-shadow: 0px 0px 15px 15px #fff;
border-radius:50%;
opacity: 0.6;
-webkit-transform: rotate(720deg);
transform: rotate(720deg);
}
.rotate {
opacity: 1;
-webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}
