
/* root element for accordion. decorated with rounded borders and gradient background image */
.accordion {
	background:#FFFFFF url(../img/h150.png) repeat scroll 0;
	height:122px;
	padding:7px 0px 11px 18px;
	width:100%;
	border:1px solid #ddd;
	margin-top:11px;
}

/* accordion header */
.accordion img {
	float:left;
	margin-right:11px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=50);
	height:122px;
	width:75px;
}

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


/* content inside a pane should have fixed width */
.accordion div h3 {
	color:#444;
	margin:0 0 -10px 0;
	width:171px;
	font-size:15px;	
}
	
.accordion div p {	
	font-size:11px;
	width:171px;
}
