/*------------------------------------*\
-------- Page Styles: Accordion
\*------------------------------------*/

/*------------------------------------*\
-------- DEMO Code: accordion
\*------------------------------------*/
/*----- Accordion -----*/

/*----- Section Titles -----*/


.accordion-section-title .accordion-img
{
  background: url(/app_media/images/plus.png) no-repeat;
  height:20px;Width:20px;
  background-size: 20px 20px;
  padding-left: 20px; /* Equal to width of new image */
}

.accordion-section-title .active
{
  background: url(/app_media/images/minus.png) no-repeat;
  background-size: 20px 20px;
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:0px;
	display:none;
}
.accordion-section .accordion-imgcheck
{
  height:20px;Width:20px;
}
.accordion .bookdetailstitle{text-align:right;padding-right:5px;font-weight:700;}

.accordion-title{color:blue;font-weight:700;}
/*

    .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);
	border-radius:3px;
	background:#f7f7f7;
}

.accordion-section-title {
	width:100%;
	padding:15px;
	display:inline-block;
	border-bottom:1px solid #1a1a1a;
	background:#333;
	transition:all linear 0.15s;
	font-size:1.200em;
	text-shadow:0px 1px 0px #1a1a1a;
	color:#fff;
}

.accordion-section-title.active, .accordion-section-title:hover {
	background:#4c4c4c;
	text-decoration:none;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

*/