.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;
}

/*----- Section Titles -----*/
.accordion-section-title {
    background: #ddd url("../images/plus.png") no-repeat scroll right center;
    border-bottom: 1px solid #efefef;
    color: #333;
    display: inline-block;
    font-size: 1.2em;
    padding: 15px;
    transition: all 0.15s linear 0s;
    width: 100%;
}
.accordion-section-title.active, .accordion-section-title:hover {
	 color:#fff;  background: #0099cf url("../images/plus.png") no-repeat scroll right center;
	/* Type */
	text-decoration:none;
}

.accordion-section-title.active{
	 color:#fff;  background: #0099cf url("../images/minus.png") no-repeat scroll right center;
	/* Type */
	text-decoration:none;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}
.accordion-section-content.open .resources-detail > span {
    display: block;
    padding: 10px;
}
/*----- Section Content -----*/
.accordion-section-content {
	padding:15px;
	display:none;
}