
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {

	background:#FFFFFF url(/img/global/gradient/h150.png) repeat scroll 0;
	height:120px;
	padding:10px 20px 10px 20px;
	width:600px;
	border:1px solid #ddd;
}

/* accordion header */
#accordion img {
	float:right;
	margin-left:10px;
	cursor:pointer;
	/* opacity:0.5;
	filter: alpha(opacity=30); */
}

/* 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:right;	
	display:none;		
	margin-left:10px;
}

/* content inside a pane should have fixed width */
#accordion div h3 {
	color:#444;
	margin:0 0 -10px 0;
	width:190px;
	font-size:15px;	
}
	

#accordion div a {	
	font-size:8pt;
/*	width:190px;*/
	font-family:tahoma;
	text-align:right;
	Font-Weight:Bold;
	text-decoration: none;
}


#accordion div td {	
	font-size:8pt;
/*	width:190px;*/
	font-family:tahoma;
	text-align:right;
	Font-Weight:Bold;
	text-decoration: none;
	padding:2px;
}

#accordion div img {
	/* filter: alpha(opacity=100); */
}
	