/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	height:90px;
	padding:0px 0 10px 7px;
	width:645px;
	border:0px;
}

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

/* currently active header */
#accordion img.current.scrolls{
	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:10px;
}

/* content inside a pane should have fixed width */
#accordion div h3 {
	text-align:left;
	margin:0 0 -10px 0;
	width:190px;
	font-size:16px;	
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	text-decoration:none;
}
	
#accordion div p {	
	text-align:left;
	font-family: Arial, Helvetica, sans-serif;
	font-size:11px;
	color: #DFDFDF;
	width:200px;
}

#accordion a{
	font-size:10px;
	color:#FFF;
}

#accordion a:hover{
	font-size:10px;
	color:#FFF;
}


