
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#f0f1f5;
	height:280px;
	padding:0px;
	width:1668px;
	white-space:nowrap;
	overflow:hidden;
}

/* accordion header */
#accordion img.acordTabs {
	float:left;
	margin-right:0px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=50);
}

/* currently active header */
#accordion img.acordTabs.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;
}

#accordion span {
	display:block;		
}


/* content inside a pane should have fixed width */
#accordion div h3 {
	color:#444;
	margin:0px;
	font-size:15px;	
}
	
#accordion div p {	
	font-size:11px;
}

#demotip 
{
	display:none;
	z-index:201;
	background:transparent url(../images/black_arrow.png);
	font-size:12px;
	height:70px;
	width:160px;
	padding:25px;
	color:#fff;
}
