#accordion {
	width: 100%;
}

/* accordion header */
#accordion h2 {
	margin: 0;
	padding: 8px 15px 2px 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #737f7a;
	background-color: #27332f;
	border-top:1px solid #5e6c67;
	/* border-bottom:1px solid #000000; */
	cursor: pointer;
	height: 24px;
	text-transform: uppercase;
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	text-transform: none;
	color: #f5f5f5;
	font-size: 16px;
	height: 24px;
	/*padding-top: 20px;*/
	font-weight: bold;
	border-top: 1px solid #fcd2da;
	text-transform: uppercase;	
	background: url(../img/bg-active.gif) repeat-x #e4981d;
	/* border-top: 1px solid #1a0f15; */
}

#accordion h2:hover {
	background-color: #1b2421 !important;
	color: #f2f2ed !important;
}


/* accordion pane */
#accordion div.pane {
	display:none;
}

