

/*------------------------------------*\
-------- DEMO Code: accordion
\*------------------------------------*/
/*----- Accordion -----*/

a {
text-decoration: none;
}

table {
	color:#FFFFFF;
	background-color:#666666;
}
tr {
	height:30px;

}
.accordion {
	overflow: hidden;
	box-shadow:0px 1px 3px rgba(0,0,0,0.25);
	border-radius:3px;
	background:#666666;
	width:600px;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:600px;

	padding:2px;
	display:inline-block;
	border-bottom:1px solid #1a1a1a;
	background:#333;
	transition:all linear 0.15s;
	/* Type */
	font-size:32px;
	font-family: Alura', cursive;
	text-shadow:0px 1px 0px #1a1a1a;
	color:#fff;
	line-height:40px;
}

.accordion-section-title.active, .accordion-section-title:hover {
	width:600px;
	background:#4c4c4c;
	/* Type */
	text-decoration:none;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:5px;
	display:none;
}