
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	height:320px;
	width:950px;
	font-family:Georgia, "Times New Roman", Times, serif;
	display:block;
	overflow:hidden;
}

/* accordion header */
#accordion h5 img {
	float:left;
	cursor:pointer;
	opacity:0.7;
	filter: alpha(opacity=70);
}

/* currently active header */
#accordion h5.current img {
	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;
	margin-left:20px;
}


/* content inside a pane should have fixed width */
#accordion div h3 {
	color:#d70000;
	margin:10px 0 10px 0;
	width:190px;
	font-size:22px;	
}
	
#accordion div p {	
	font-size:11px;
	width:750px;
}

