/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	position:relative;
	top:0px;
	left:1;
	background:#000;
	height:330px;
	padding:5px 5 5px 5px;
	width:900px;

}

/* accordion header */
#accordion img {
	cursor:pointer;
	opacity:0.4;
	filter: alpha(opacity=40);
	float:right;
}

/* currently active header */
#accordion img.current {
	cursor:default;
	opacity:1;
	filter: alpha(opacity=100);
	float:left;
}

/* 
	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:5px;
}

