@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: 480 px oder weniger. */

.gridContainerA {
	width: 100%;
	max-width: 2500px;
	clear: both;
	float: left;
	display: block;
}
#LayoutDiv1 {
	background-image:url(links/m.jpg);
	background-size:auto;
	height: calc(150vh - 0px);
	width: 50%;
	clear: none;
	float: left;
	display: none;
}
#LayoutDiv2 {
	padding: 15px 4% 25% 4%;
	height: auto;
	width: 92%;
	clear: both;
	float: left;
	display: block;
  	position: relative;
}
.logo {
  position: absolute;
  width:8%;
  top: 1.1%;
  right: 5%;
}

/* Layout für Tablet-PCs: 481 bis 768 px. Erbt Stile vom: Layout für Mobilgeräte. */

				@media only screen and (min-width: 555px) {
				.gridContainerA {
				width: 100%;
				max-width: 2500px;
				clear: both;
				float: left;
				display: block;
				}
				#LayoutDiv1 {
	background-image:url(links/m.jpg);
	background-size:auto;
	height: calc(150vh - 0px);
	width: 50%;
	clear: none;
	float: left;
	display: none;
				}
				#LayoutDiv2 {
				padding: 30px 2% 20% 2%;
				height: auto;
				width: 96%;
				clear: both;
				float: left;
				display: block;
				position: relative;
				}
				.logo {
				position: absolute;
				width:5%;
				top: 30px;
				right: 30px;
				}
				}

/* Desktoplayout: 769 bis maximal 1232 px.  Erbt Stile von: den Layouts für Mobilgeräte und Tablet-PCs. */

@media only screen and (min-width: 1024px) {
.gridContainerA {
	width: 100%;
	max-width: 2500px;
	clear: both;
	float: left;
	display: block;
}
#LayoutDiv1 {
	background-image:url(links/m.jpg);
	background-size:auto;
	height: calc(150vh - 0px);
	width: 50%;
	clear: none;
	float: left;
	display: block;
}
#LayoutDiv2 {
	padding: 1.5% 2% 0% 2%;
	height: calc(95%);
	width: 46%;
	clear: none;
	float: left;
	display: block;
  	position: relative;
}
.logo {
  position: absolute;
  width:4%;
  top: 25px;
  right: 25px;
}



}
