@charset "utf-8";
/* CSS Document */
nav {
	display:block;
	position:fixed;
	z-index:3;
	clear:both;
	width:200px; 
	height:560px; 
	margin-left:-200px;
	margin-top:-560px;
	padding-right:60px;
	padding-bottom:80px;
	border: solid 2px #333;
	
	border-bottom-right-radius:20px;
	box-shadow: 10px 10px 20px #000;
	background-color:#999;
	
	background: linear-gradient(to bottom right, rgba(51,51,51,0.8) 0%, rgba(153,153,153,0.8) 100%); 
	transition: margin 2s ease; 
}
nav:hover {
	margin-left:0px;
	margin-top:0px;
}
img.Logo {
	display:block;
	position:absolute;
	height:80px;
	width:52px;
	right:8px;
	bottom:0px;
	border:none;
}
img.Icon {
	display:block;
	float:left;
	border:none;
	width:39px;
	height:60px;
/*	margin:4px; */
}
nav a {
	display:block;
	width:100%;
	height:1.5em; 
	padding:0.4em;
	border: solid 2px #333;
	text-align:center;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:2em;
	font-weight:bold ;
	color:#ccc;
	text-decoration:none;
	border-top-right-radius:0.5em;
	border-bottom-right-radius:0.5em;
	background-color: #999 ;
	background: linear-gradient(to bottom, rgba(153,153,153,0.8) 0%,rgba(51,51,51,0.8) 100%); 
}
nav a:active {
	color:#fff;
}
nav a:visited {
	color:#ccc;
}
nav a:hover {
	color:#fff;
}
nav button {
	display:block;
	width:100%;
	border: solid 2px #333;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:24px;
	color:#ccc;
	text-decoration:none;
	border-top-right-radius:0.5em;
	border-bottom-right-radius:0.5em;
	background: linear-gradient(to bottom, rgba(153,153,153,0.8) 0%,rgba(102,102,102,0.8) 100%); 
}
nav button:hover {
	cursor:pointer;
	color:#fff;
}

nav div#Tipp {
	display: block;
	position: absolute ;
	z-index: 100 ;
	bottom: 55px ;
	right: -5em ;
	width: 5em ;
	height: 1.4em ;
	text-align: center ;
	color: #000000 ;
	background: #ffffff ;
	border: solid 2px #000000 ;
	border-radius: 0.7em 0.7em 0.7em 0em ;
}

nav:hover div#Tipp {
	display: none ;
}
