
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {background:#fff;}

/* accordion header */
#accordion h2 {
	width:400px;
	height:35px;
	background:url("../images/customer_contentBg_01.gif") no-repeat 0 0;
	margin:0;
	padding:7px 0 0 70px;
	font-size:12px;
	font-weight:normal;
	cursor:pointer;	
	color:#333;	
	line-height:14px;
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	color:#000;
	font-weight:bold;
}

/* accordion pane */
#accordion div.pane {
	width:470px;
	display:none;
	/*height:180px;*/
	color:#fff;
	font-size:12px;
	margin:5px 0 30px 4px;
}
#accordion div.pane p{
	margin-bottom:15px;
	color:#666;
	font-size:12px;
}

/* a title inside pane */
#accordion div.pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}
