
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#000;
	height:560px;
	padding:10px 0 10px 20px;
	border:1px solid #000;
}

/* accordion header */
#accordion img {
	float:left;
	margin-right:10px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=60);
}

/* 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 h3 {
	color:#ff00cc;
	width:400px;
	font-size:15px;
	line-height:21px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	text-align: left;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 10;
	margin-left: 0;
}
	
#accordion div p {
	font-size:12px;
	line-height:18px;
	color:#fff;
	width:400px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}

