﻿/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#FFFFFF url(../../../../images/v1/product_bg.jpg) repeat-x;
	height:181px;
	padding:0;
	width:650px;
	border:1px solid #B7C9CB;
	overflow:hidden;
}

/* accordion header */
#accordion img {
	float:left;
	margin-right:1px;
	cursor:pointer;
	opacity:0.6;
	filter: alpha(opacity=60);
}

/* currently active header */
#accordion img.current {
	cursor:default;
	opacity:1;
	filter: alpha(opacity=100);
}

/* 
	accordion pane. should initially have zero width and display:none.
	the first pane should override these with inline style
*/
#accordion div {
	width:0px;
	float:left;	
	display:none;		
	margin-right:10px;
}

/* content inside a pane should have fixed width */
#accordion div h3 {
	color:#1E7E85;
	margin:5px 0 10px 0;
	font-size:15px;	
	width:290px;
	font-weight:bold;
	font-family:宋体;
}
	
#accordion div p {	
	font-size:12px;
	clear:none;
	margin:0;
	padding:0;
	width:290px;
}