
/* root element for accordion. decorated with rounded borders and gradient background image */
.accordion {
	margin-top: 20px;
	width: 780px;
	height: 152px;
	overflow: hidden;
}

/* accordion header */
.accordion img {
	float:left;
	margin-right:10px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=50);
	border: 1px solid #cccccc;
}

/* 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 h5 {
	color:#000000;
	margin:0 0 7px 0;
	width:110px;
	font-size:12px;	
}
	
.accordion div p {	
	font-size:11px;
	width:110px;
	text-align: left;
}

