
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#ffffff;
	width: 100%;
	border:1px solid #cccccc;	
	
}

/* accordion header */
#accordion h2 {
	background:#f5f5f5 url(../images/faq_right.png) no-repeat center left;
	margin:0;
	padding:5px 25px;
	font-size:13px;
	font-weight:normal;
	border:1px solid #fff;
	border-bottom:1px solid #ddd;
	cursor:pointer;
	color:#3d3d3d;
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	background: #3d3d3d url(../images/faq_down.png) no-repeat center left;
	color:#ffffff;
	
}

/* accordion pane */
#accordion div.pane {
	border-width:0 1px;
	display:none;
	height:auto;
	padding:15px;
	color:#3d3d3d;
	font-size:12px;
	width: 95%;
	border-bottom:1px solid #cccccc;
	
}

/* a title inside pane */
#accordion div.pane h3 {
	font-weight:normal;
	margin-top:15px;
	margin-bottom:5px;
	font-size:13px;
	color:#ff6600;
	font-weight:bold;
}
