
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#FFF url(h600.jpg) repeat scroll 0;
	height:550px;
	padding:20px 0px 20px 20px;
	width:1000px;
	border:0px solid #000;
}

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

/* currently active header */
#accordion img.current {
	cursor:default;
	opacity:1;
	filter: alpha(opacity=100);
	border:1px #000 solid;
}

/* 
	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 h3 {
	color:#444;
	margin:0 0 20px 0;
	width:300px;
}
	
#accordion div p {	
	font-size:90%;
	width:300px;
	padding: 10px;
}

