
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	height:90px;
	width:255px;
	border:0px solid #ddd; padding-right:0; padding-top:0px; padding-bottom:0px
}

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

/* 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:0px;
}

/* content inside a pane should have fixed width */
#accordion div h3 {
	margin:0 0 -10px 0;
	width:185px;
	height:90px;
	font-size:15px;	
}
	
#accordion div p {	
	width:185px;
	height:90px;
}
