
#accordion {
position:absolute;
	left:50%;
	margin-left:-430px;
	margin-top:-65px;
	height:111px;
	padding:10px 0px 5px 25px;
	z-index:3;

	width:910px;
	
	
}

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

/* 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:5px;
	/*background:#F4EECA;
		opacity:0.2;
	filter: alpha(opacity=20);*/

}



/* content inside a pane should have fixed width */
#accordion div h3 {
	color:#fff;
	margin:0 0 2px 0;
	width:140px;
	font-size:15px;
	text-decoration:underline;	
	font-weight:bold;

}
	
#accordion div p {	
	color:#fff;
	font-size:12px;
	width:120px;
}

