.accordion_wrapper{
	width:100%;
	border-top: 1px solid #ccc;
	position:relative;
}
.accordion_wrapper h2, .accordion_wrapper .h2{
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select:none;
	user-select:none;
	-o-user-select:none;
        font-size:15pt;
        margin-top:20px;
}
.accordion_wrapper h2:hover, .accordion_wrapper .h2:hover{
	opacity: 0.8;
}
.accordion_wrapper h2:hover{
	cursor: pointer;
}
.accordion_wrapper h2:active{
	opacity: 0.5;
}
.accordion_content_wrapper{
	width:100%;
	overflow-y:hidden;
	height: 0px;
}
.accordion_content{
	width: 100%;
	padding-bottom:20px;
	overflow-x: hidden;
}
.accordion_content span[name="Funktion"]{
	text-transform: uppercase;
	text-align:left;
	font-size: 15pt;
	font-family: 'Verdana', sans-serif;
	font-weight: bold;
}
.accordion_content .content_row{
	width:100%;
	box-sizing: border-box;
	background-color: #b8b8b8;
	padding: 15px;
	margin-bottom: 10px;
}
.accordion_content .content_part{
	width:50%;
	display:inline-block;
	vertical-align:top;
}
.accordion_content p, .accordion_content ul, .accordion_content ol{
	margin-top: 0;
	margin-bottom: 0;
}
.visibleState{
	width:20px;
	height:20px;
	top: 20pt;
	right: 0px;
	position:absolute;
}
.visibleState:hover{
	cursor:pointer;
	opacity:0.8;
}
.visibleState:active{
	opacity: 0.5;
}
.visibleState .vertical, .visibleState .horizontal{
	background-color:#ED1C24;
	position:absolute;
}
.visibleState .horizontal{
	width:20px;
	height:2px;
	top:9px;
}
.visibleState .vertical{
	width:2px;
	height:20px;
	left: 9px;
}
@media screen and (max-width : 720px), screen and (max-device-width : 720px) {
	.accordion_content .content_part{
		width:100%;
		display: block;
	}
}