
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#transparent;
	height:140px;
	width:940px;
	border:none;
}

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

/* currently active header */
#accordion img.current {
	cursor:default;
	opacity:0.5;
	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;
}
	
#accordion div p {	
	font-size:11px;
	width:500px;
	text-align:justify;
	color: #666666;
}
