.inner {
width: 390px;
margin:5px auto;
background-color: yellow;
}
.hilfe {
   	 width: 500px;
	 height: auto;
	 position: fixed;
	 top: 70px;
     right:10px;
     z-index:200;
}
.inhalt {
	background-color: #f1f1f1;
	font-size: 16px;
	line-height: 20px;
}
.inhalt p { 
    font-weight: bold;
}
.inhalt span {
    color: #FF0000;
}

 #akkordeon:not(:target) .inhalt,
 #akkordeon:not(:target) .hide,
 #akkordeon:target .show {display: none;}
#akkordeon:target .inhalt {display: block;}

.inhalt {
 box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
 padding: 20px 20px 1px;
 margin: 0px 0px 10px;
 }

.show,
 .hide {
 padding:10px;
 background: rgb(254, 164, 0);
 margin-left: 120px;
 border: 5px double red;
 box-shadow:none!important;
 color:#fff;
 font-weight:bold;
 }

.show:hover,
 .hide:hover {
 background: rgb(255, 214, 118);
 color:#fff!important;
 transition:0.2s all ease-in-out!important;
 }