﻿/* CSS Document  stylehk.css*/
	/*font-family:  "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;font-family: "Bree Serif","Open Sans",Arial ;*/

@font-face {
  font-family: 'Arsenal';
  font-style: normal;
  font-weight: 400;
  src: url('../000fonts/arsenal-v3-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Arsenal Regular'), local('Arsenal-Regular'),
       url('../000fonts/arsenal-v3-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../000fonts/arsenal-v3-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../000fonts/arsenal-v3-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../000fonts/arsenal-v3-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../000fonts/arsenal-v3-latin-regular.svg#Arsenal') format('svg'); /* Legacy iOS */
}
*{
	font-family: Arsenal, Arial, sans ;
 	padding:0rem; margin: 0rem;
  	box-sizing: border-box;
}


/*---------------------
mobile-first-Ansatz
für die kleinsten Geräte (IPhone...)
---------------------*/
html{
	font-size:100%;
	min-width:370px;
	}
body {
	background: #ffffff;
	line-height: 1.1rem;
	color: #000000;
	padding: 0;
	text-align:left;
	word-wrap:break-word !important;
	}

#meinlogo {
	position:absolute;
	right:	1.0rem;
	top:1.0rem;
	display: block;
	padding: 0.1rem;
	z-index:9;
	}

#container {
	margin: 0 ;
	max-width: 1600px;
	padding:0rem 1rem 5rem 1rem;
	}
	
#content{
	margin: 0 ;
	padding:1rem 1rem 5rem 1rem;
	float:left;
	width: 100%;
	}
	
#sidebar{
	display:none;
	}


h1	{
	font-size: 1.3rem;
	margin:1rem 0.5rem 0.8rem 0.5rem;
	color:#254441;
	border-bottom-style:solid;
	border-color:#254441;
	
	}
h2	{
	font-size: 1.1rem;
	margin:0.8rem 0.5rem 0.6rem 0.5rem ;
	color:#254441;	
	}
h3	{
	font-size: 1.0rem;
	margin:0.5rem 0.5rem 0.1rem 0.5rem;
	font-style:italic;
	font-weight:bold;
	color:#254441;	
	}
p{
	font-size: 0.9rem;
	margin:0.1rem 0.5rem 0.1rem 0.5rem;	
	text-align:justify;
	}

.textnormal
	{
	font-size: 0.9rem;
	text-align:justify;
	}
.textrot
	{
	font-size: 0.9rem;
	text-align:justify;
	color:red;
	}

.textlinks
	{
	font-size: 0.9rem;
	text-align:left;
	}
.textklein
	{
	font-size: 0.7rem;
	}

.titel 
	{
	margin-top:1rem;	
	font-weight:bold;
	font-size: 1.4rem;
	color: #254441;
	text-align:left;
	display:block;	
	}
.titel2 
	{
	font-size: 1.1rem;
	color:white;	
	}
	
img	{
	max-width:100%;
	height:auto;
	margin:0.2rem;
	vertical-align:middle;
	text-align:left;
	}

a.mbtn1 {
  background-color: #254441; /* Green */
  width: 95%;
  color: white;
  padding: 2%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 0.7rem;
  margin: 0.5%;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
	border-color:#254441;
	border-style:solid;
	
}
a.mbtn1:link {
  background-color: #254441; /* Green */
  color: white;
}

a.mbtn1:hover {
  background-color: #ffffff; /* Green */
  color: #254441;
	border-color:#254441;
	border-style:solid;
}
a.mbtn1:vistited {
  background-color: #254441; /* Green */
  color: white;
}

.toggle,[id^=drop] {
	display: none;
	}

/* Hintergrundfarbe für den Navigations-Container */
nav { 
	margin:0;
	padding: 0;
	background-color: #254441;
	}
/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */
nav:after {
	content:"";
	display:table;
	clear:both;
}
/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */

 
nav ul {
	float: left;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	background-color: #254441;
	}

	
	
/* Styling the links */
nav a {
	display:block;
	padding:14px 20px;	
	color:#FFF;
	font-size:1.1rem;
	text-decoration:none;
	line-height:1.2rem;
	}

nav ul li ul li:hover { background: #000000; }
/* Hintergrundfarbe hover beim Quermenü bei höherer Auflösung  */
nav a:hover { 
	background-color: #666600; 
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 2.2rem; 
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:300px; /*Breite des ersten Pulldownmenüs*/
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}


/*---------------------------------------------
 Media Queries
--------------------------------------------- */
@media all and (max-width : 4800px) {
	html{
		font-size:150%;
		}
	.titel 
		{
		font-size: 1.5rem;
		}
#content{
	margin: 0 ;
	padding:1rem 1rem 5rem 1rem;
	float:left;
	width: 70%;
	}

#sidebar{
	margin: 0 ;
	float:right;
	width:29%;
	padding:1rem 1rem 5rem 1rem;
	display:block;
	}


}


@media all and (max-width : 1400px) {
	html{
		font-size:130%;
		}
	.titel 
		{
		font-size: 1.3rem;
		}


}

@media all and (max-width : 1000px) {
	html{
		font-size:110%;
		}
	.titel 
		{
		font-size: 1.1rem;
		}	
}

@media all and (max-width : 768px) {
	html{
		font-size:100%;
		}
	.titel 
		{
		font-size: 0.9rem;
		}

nav {
		margin: 0;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a, .menu {
		display: none;
		}

	/* Style bei der Menütabelle  für kleine Auflösung */
	.toggle {
		display: block;
		background-color: #254441;
		padding:14px 20px;	
		color:#FFF;
		font-size:1.1rem;
		text-decoration:none;
		border:none;
	}

	.toggle:hover {
		background-color: #666600;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		}

	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	nav a:hover,
 	nav ul ul ul a { /* Link für Hauptmenü ohne Untermenü */
		background-color:  #666600;
	}
  
	nav ul li ul li .toggle,
	nav ul ul a,
  	nav ul ul ul a{
		padding:14px 20px;	
		color:#FFF;
		font-size:1.1rem; 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #212121; 
	}

	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}

#content{
	width: 100%;
	}

#sidebar{
	width: 100%;
	}

}


