/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#FFFFFF url(../images/g150.png) repeat scroll 0;
	height:80px;
	padding:10px 0 10px 20px;
	width:616px;
	border:1px solid #ddd;
}

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

/* currently active header */
#accordion img.current {
	cursor:pointer;
	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 h4 {
	color:#444;
	margin:0 0 5px 10px;
	width:230px;
	font-size:15px;	
	color: #0088ff;
}
	
#accordion div p {	
	font-size:11px;
	font: 12px Arial, Helvetica, sans-serif;
	width:230px;
	
	padding-left: 0;
}
#accordian div h4 a {
	color: #0088FF;
	}
#accordian div h4 a:hover {
	color: #003366;
	}
