
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion2 {
	background:#FFFFFF;
	height:180px;
	padding:3px 3 3px 2px;
	width:550px;
	border:0px solid #ddd;
}

/* accordion header */
#accordion2 img {
	float:left;
	margin-right:5px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=50);
}

/* currently active header */
#accordion2 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
*/
#accordion2 div {
	width:120px;
	float:left;	
	display:none;		
	margin-right:10px;
}

/* content inside a pane should have fixed width */
#accordion2 div h3 {
	color:#444;
	margin:0 0 -10px 0;
	width:90px;
	font-size:15px;	
}
	
#accordion2 div p {	
	font-size:11px;
	width:110px;
	text-align:left;
}

