
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion
{
	background: #f6f9fa 0 0;
	width: 254px;
	-background: #666;
}

/* accordion header */
#accordion h2
{
	background-position: center center;
	background: url(h30.png);
	margin: 0;
	padding: 7px 10px 9px 10px;
	font-size: 13px;
	font-weight: bold;
	cursor: pointer;
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	color: #0066CC;
}

/* currently active header */
#accordion h2.current
{
	cursor: default;
	background-color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	color: #3399FF;
	font-weight: bold;
	font-size: 13px;
}

/* accordion pane */
#accordion div.pane {
	border:1px solid #fff;
	border-width:0 2px;
	display:none;
	height:280px;
	padding:5px;
	color:#526369;
	font-size:12px;
}

/* a title inside pane */
#accordion div.pane h3
{
	font-weight: bold;
	margin: 0 0 4px 0;
	font-size: 16px;
	color: #526369;
	font-family: Arial, Helvetica, sans-serif;
}
