
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#FFFFFF url(js/h150.png) repeat scroll 0;
	height:288px;
	padding:10px 0 10px  20px;
	width:857px;
	border:1px solid #ddd;
	font-size:10pt;
}

/* accordion header */
#accordion img {
	float:left;
	margin-right:10px;
	cursor:pointer;
	opacity:0.9;
	filter: alpha(opacity=90);
}

/* 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:#444;
	margin:0 0 10px 0;
	width:200px;
	font-size:11px;	
}
	
#accordion div p {	
	font-size:11px;
	width:200px;
}
