/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	width: 220px;
}

/* accordion header */
#accordion h2 {
	background-color:#407F9D;
	margin:0;
	padding:5px 15px;
	font-size:12px;
	font-weight:bold;
	border-top:1px solid #FFF;
	border-bottom:1px solid #FFF;
	cursor:pointer;
	color: #FFF;
	background: url(../img/close.gif) no-repeat 95% 50%;
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	background-color:#60B1C7;
	background: url(../img/open.gif) no-repeat 95% 50%;
}

/* accordion pane */
#accordion .pane {
	display:none;
	height:auto;
	padding:15px 5px;
	color:#fff;
	font-size:11px;
	overflow: auto;
}

/* a title inside pane */
#accordion .pane h3 {
	font-weight:bold;
	margin:0 0 -5px 0;
	font-size:12px;
	color:#F90;
}
