@charset "utf-8";
/* CSS Document */

/* root element for accordion. */
#accordion {
	height:318px;
	padding:0;
	width:900px;
}

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

/* 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;
	position:relative;
}

/* content inside a pane should have fixed width */
#accordion div h3 {
	color:#444;
	margin:0 0 -10px 0;
	width:190px;
	font-size:15px;	
	position:absolute;
	left:30px;
	top:10px;
}

/* paragraphs are using inline style */
#accordion div p{
	position:absolute;
	height: 208px;
	text-align:center;
}
