@charset "utf-8";
/* CSS Document */
/******************************************************************************************
// Datei: fluid-main.css
// Author: DH
// Änderungsdatum: 17.05.16
// Beschreibung: 	- Grundelemente
*******************************************************************************************/

@charset "utf-8";
/* Einfache fließende Medien
   Hinweis: Für fließende Medien müssen Sie die Attribute 'height' und 'width' des Medium aus dem HTML-Code entfernen
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 unterstützt keine maximale Breite, verwenden Sie daher eine Standardbreite von 100% */
.ie6 img {
	width: 100%;
}
/*
	Dreamweaver-Eigenschaften für fließende Raster
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Idee durch den Artikel "Responsive Web Design" von Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	und "Golden Grid System" von Joni Korpi
	http://goldengridsystem.com/
*/

/**** Layout für Mobilgeräte. */
/*BODY, BACKGROUND, etc*/
.BODY-CLASS-Body {
	background-color: #fff;
	position: relative;
	min-height: 100%;
}
.DIV-CLASS-Background {
	width: 100%;
	min-width:300px;
	z-index: 1;
	position: absolute;
	background-color: #ddd;
	height:0px;
	margin-top: 120px;
	display:none;
	
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #999999;

}
.DIV-CLASS-HeadBackground {
	width: 100%;
	min-width:300px;
	z-index: 2;
	position: absolute;
	background-color: #fff;
	height: 120px;
}

@font-face {
  font-family: Verdana_DMH;
  src: local("Verdana"),  /* Prüfung, ob Schriftart-Datei bereits auf dem Computer des Betrachters installiert ist */
       url(verdana.ttf?OpenFileResource) format('truetype'), /* Format für Gecko- und Webkit-Browser */
       url(verdana.eot?OpenFileResource) format('eot'); /*Internet Explorer ab Version 5.5*/
}

.gridContainer {
	width: 100%;
	min-width:300px;
	padding-left: 0px;
	padding-right: 0;
	margin-left: 0;
	display: block;
	height: auto;
	position: relative;
}



/*Content*/
.DIV-CLASS-Content {
	width: 100%;
	min-width:300px;
	max-width:100%;
	min-height:60%;
	
	
	background-color: #FFF;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 25px;
	padding-bottom: 25px;
	position:relative;
	display: table;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	
	
	font-family: Verdana_DMH, Verdana, Geneva, sans-serif;
	font-size: 16pt;
	font-weight: normal;
	text-align: left;
	color: #000000;
	text-decoration: none;
	/*margin-bottom: 260px;*/
	margin-top: 1px;
}
@-moz-document url-prefix() {
    
    .DIV-CLASS-Content {height:900px;}
    }

h1{
	font-family: Verdana_DMH, Verdana_DMH, Verdana, Geneva, sans-serif;
	font-style:normal;
	font-size: 20pt;
	font-weight: bold;
	text-align: left;
	color: #312783;
	text-decoration: none;
	margin: 0;
	margin-bottom: 15px;
}
h2{
	font-family: Verdana_DMH, Verdana, Geneva, sans-serif;
	font-style:normal;
	font-size: 16pt;
	font-weight:bold;
	text-align: left;
	color: #312783;
	text-decoration: none;
	margin-top:30px;
	margin: 0;
	margin-bottom: 15px;
}
h3{
	font-family: Verdana_DMH, Verdana, Geneva, sans-serif;
	font-style:normal;
	font-size: 16pt;
	font-weight:normal;
	text-align: left;
	color: #312783;
	text-decoration: none;
	margin-top:30px;
	margin: 0;
	margin-bottom: 5px;
}

/*KONTAKTFORMULAR*/
#IFRAME-ID-Kontaktformular{
	min-height:1850px;
}


/**** Layout für Tablet-PCs. Erbt Stile vom: Layout für Mobilgeräte. */
@media only screen and (min-width: 481px) {
	
/*Content*/
.DIV-CLASS-Content {
	/*margin-bottom: 160px;*/
	font-size: 14pt;
}
h1{
	font-size: 20pt;
	
}
h2{
	font-size:14pt;
}
h3{
	font-size:14pt;
}
	
/*KONTAKTFORMULAR*/
#IFRAME-ID-Kontaktformular{
	min-height:1420px;
}
	
}

/**** Desktoplayout. Erbt Stile von: den Layouts für Mobilgeräte und Tablet-PCs. */
@media only screen and (min-width: 979px) and (orientation : landscape) {
/*BODY, BACKGROUND, etc*/
.DIV-CLASS-Background {
	display:block;
	height: 350px;
	margin-top: 40px;
	background-image:url(dmh_hintergrund.png?OpenImageResource);
	background-repeat:repeat-x;
	background-position:center;
	
	
}
.DIV-CLASS-HeadBackground {
	height: 40px;
}
.gridContainer {
	max-width: 980px;
	width:100%;
	position: relative;
	z-index: 10;
	margin-left: auto;
	margin-right: auto;
}

/*Content*/
.DIV-CLASS-Content {
	/*margin-bottom: 160px;*/
	font-size: 11pt;
}
h1{
	font-size:20pt;
}
h2{
	font-size:14pt;
}
h3{
	font-size:14pt;
}
	
/*KONTAKTFORMULAR*/
#IFRAME-ID-Kontaktformular{
	min-height:850px;
}	
	
}