
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	height:290px;
	padding:0px 0px 0px 0px;
	width:808px;
	border:0px solid #ddd;
	overflow:hidden;
}

/* 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 {
	color:#fff;
	margin:0 0 0 0;
	font-size:24px;	
	text-align:center;
	font-family: Arial, Helvetica, sans-serif;
}

#accordion div h4 {
	color:#fff;
	margin:0 0 0 0;
	font-size:18px;	
	text-align:right;
	font-family: Arial, Helvetica, sans-serif;
}
	
#accordion div table {	
	font-size:14px;
	color:#fff;
	font-family: Arial, Helvetica, sans-serif;
}