/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	/*background:#333;*/
	width: 100%;
	background:#ffffff;
}

/* accordion header */
#accordion h3 {
	background:#ffffff;
	margin:0;
	padding:5px 15px 5px 15px;
	font-size: 100%;
	font-weight:normal;
	border:1px solid #ffffff;
	border-bottom:1px solid #ddd;
	cursor:pointer;
	line-height: 200%;
	list-style-type: none;
	/*background: #fff url(../../images/pfeil1.png) 0 15px no-repeat;*/
	color: #666666;
	font-family: 'thesans-b3-light.ttf', 'Oxygen', sans-serif;
}

/* currently active header */
#accordion h3.ui-state-active {
	cursor:default;
	background-color:#ffffff;
	font-weight: normal;
	color: #3B5A00;
	/*background: #fff url(../../images/pfeil2.png) 0 15px no-repeat;*/
}

/* accordion pane */
#accordion div {
	border-left:0px;
	border-right:0px;
	border-bottom:0px;
	background: #ffffff;
	/*border-width:0 2px;*/
	display:none;
	padding:15px 0 15px 0;
	color: #666666;
	font-size: 100%;
	line-height: 150%;
	font-weight: normal;
	font-family: 'thesans-b3-light.ttf', 'Oxygen', sans-serif;
}

/* a title inside pane */
#accordion div h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:12px;
	color:#999;
}
