/* 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%;
	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: #000000;
	font-family: 'Roboto', Helvetica, sans-serif;
	font-weight: 300;
}

/* currently active header */
#accordion h3.ui-state-active {
	cursor:default;
	background-color:#ffffff;
	font-weight: 300;
	color: #E3000F;
	/*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:10px 0 50px 0;
	color: #000000;
	font-size: 100%;
	line-height: 150%;
	font-weight: 300;
	font-family: 'Roboto', sans-serif;
}

/* a title inside pane */
#accordion div h3 {
	font-weight:300;
	margin:0 0 -5px 0;
	font-size:12px;
	color:#000000;
}
#accordion div a {
	text-decoration: none;
	color: #E3000F;
}