.accordion {
	overflow:hidden;
	box-shadow:0px 1px 3px rgba(0,0,0,0.25);
	border-radius:3px;
	background:#f7f7f7;
}

/*----- Section Titles -----*/
.accordion-section-title {
	font-family: "Lucida Sans Unicode","Lucida Grande",sans-serif;
	width:100%;
	padding:15px;
	display:inline-block;
	border:1px solid #1a1a1a;
	background:#f2f2f2;
	transition:all linear 0.15s;
	/* Type */
	/*font-size:1.200em;*/
	/*text-shadow:0px 1px 0px #1a1a1a;*/
	color: #555;
}

.accordion-section-title .odd {
	background:#fff;
}

.accordion-section-title.active, .accordion-section-title:hover {
	background:#bbb;
	/* Type */
	text-decoration:none;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:15px;
	display:none;
	background:#fff;
	border:1px solid #1a1a1a;
}

.odd { background:#fff; }