/*----GLOBAL RESET----*/
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/*----STRUKTUR----*/
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #FFFFFF;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	background-image: url(images/head/mxm_balken_hellrot.jpg);
	background-repeat: repeat-x;
}
/* Commonly used to style page titles. */
h1 {
  color: #484848;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
}
/* Commonly used to style section titles. */
h2 {
	color: #484848;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
}
/* Sets the style for the h3 header. */
h3 {
	font-family: Arial, Helvetica, sans-serif;
	color: #484848;
	font-size: 12px;
}
/* Sets the style for the h4 header. */
h4 {
	font-family: Arial, Helvetica, sans-serif;
	color: #484848;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #FFFFFF;
	margin: 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 950px;
	overflow: hidden;
}
#outerWrapper #topNavigation {
  background-color: #FFFFFF;
  border-bottom: 0px solid #9ea3aa; /* Sets the bottom border properties for an element using shorthand notation */
  height: 80px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #topNavigation #logo {
	height: 70px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 130px;
	float: left;
	padding-top: 10px;
}#outerWrapper #topNavigation #topnav {
	height: 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 620px;
	padding-top: 20px;
	float: right;
}
#outerWrapper #header {
	height: 200px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #CC0000;
	overflow: hidden;
	width: 950px;
	visibility: visible;
}
#outerWrapper #contentWrapper {
	padding: 10px 0px 0px;
	width: 950px;
	background-color: #FFFFFF;
}
/*----Struktur 2col - basic layout----*/
#outerWrapper #contentWrapper #leftColumn {
	border-right: solid 1px #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px 30px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 300px;
}
#outerWrapper #contentWrapper #rightColumn {
	border-right: 0px solid #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px 0px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 585px;
}
/*----Struktur 1col - content----*/
#outerWrapper #contentWrapper #centerColumn {
	border-right: 0px solid #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
	padding: 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	float: left;
	width: 950px;
	text-align: left;
}
/*----Struktur 1col - content-trennung---*/
#outerWrapper #contentWrapper #centertrennColumn {
	border-right: 0px solid #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	float: left;
	width: 950px;
	text-align: left;
}
/*----Struktur 3col - content----*/
#outerWrapper #contentWrapper #leftColumn1 {
	border-right: solid 1px #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px 18px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 290px;
}
#outerWrapper #contentWrapper #leftColumn2 {
  border-right: solid 1px #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
  float: left;
  padding: 10px 19px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 290px;
}
#outerWrapper #contentWrapper #leftColumn3 {
  border-right: 0px solid #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
  padding: 10px 0px 10px 18px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  float: left;
  width: 290px;
}
/*----Struktur 2col - content----*/
#outerWrapper #contentWrapper #leftColumn4 {
	border-right: solid 1px #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 637px;
}
#outerWrapper #contentWrapper #leftColumn5 {
  border-right: 0px solid #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
  padding: 10px 0px 10px 18px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  float: left;
  width: 290px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
	background-color: #FFFFFF;
	border-top: solid 1px #9ea3aa; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 25px;
}
#outerWrapper #footer #footernav {
	height: 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 550px;
	padding-top: 10px;
	float: right;
	padding-right: 60px;
}
#outerWrapper #footerflex {
	background-color: #FFFFFF;
	border-top: solid 1px #9ea3aa; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 600px;
}
/*----NAVIGATION----*/
a.topnav {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-decoration: none;
	font-size: 10px;
	text-align: left;
	line-height: normal;
	display: inline;
	width: 75px;
	vertical-align: text-bottom;
	border-top-color: #666666;
	border-right-color: #666666;
	border-left-color: #666666;
	height: 20px;
	border-left-width: 1px;
	border-left-style: solid;
	padding: 0% 3%;
	float: left;
	color: #333333;
}
a.topnav:link {
	text-decoration: none;
}

a.topnav:visited {
	text-decoration: none;
}
a.topnav:hover {
	color: #CC0000;
	text-decoration: none;
	font-weight: normal;
}
a.topnav:active {
	font-weight: bold;
}
a.footnav {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-decoration: none;
	font-size: 9px;
	text-align: center;
	line-height: normal;
	display: inline;
	width: 70px;
	vertical-align: text-bottom;
	color: #333333;
	border-top-color: #666666;
	border-right-color: #666666;
	border-bottom-color: #FFFFFF;
	border-left-color: #666666;
	height: 10px;
	border-left-width: 1px;
	border-left-style: solid;
	padding: 0% 3%;
	float: left;
}
a.footnav:link {
	text-decoration: none;
}
a.footnav:visited {
	text-decoration: none;
}
a.footnav:hover {
	color: #CC0000;
	text-decoration: none;
	font-weight: normal;
}
a.footnav:active {
	font-weight: bold;
}


 /* clear hebt float auf (vererbung ende) */
.clr{ clear:left; } 









/*----FORMATE----*/
.footer {
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
}


/*----LINKS----*/
.link1 {
	color: #CC0000;
	text-decoration: underline;
}
.link2 {
	color: #666666;
	text-decoration: underline;
	border-left-width: medium;
	border-left-style: dotted;
	border-left-color: #CC0000;
}
.link_picture {
	text-decoration: underline;
	border: 0px none #FFFFFF;
}
/*----LINK read----*/
a.link_read {
	color: #CC0000;
	text-decoration: none;
}
a.link_read:link {
	text-decoration: none;
}
a.link_read:visited {
	text-decoration: none;
}
a.link_read:hover {
	text-decoration: none;
	font-weight: bold;
}
a.link_read:active {
	font-weight: bold;
}





/*----CONTENT-FORMATE----*/
.block {
	float: left;
	width: 550px;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-right: 0px;
	margin-left: 0px;
	text-decoration: none;
	clip: rect(auto,auto,25px,auto);
	height: auto;
}
.block_smal {
	float: left;
	width: 550px;
	text-decoration: none;
	text-align: left;
	height: 100%;
}
.block_smal_grau {
	float: left;
	width: 680px;
	font-size: 12px;
	font-style: normal;
	line-height: 20px;
	text-decoration: none;
	text-align: justify;
	background-color: #E6E6E6;
	margin: 0px;
	padding: 10px;
	color: #666666;
}
/*----CONTENT-3col BLOCK 950----*/
.block_950 {
	border-right: 0px solid #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
	padding: 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	float: left;
	width: 950px;
	text-align: left;
}
.block_950_smal {
	border-right: 0px solid #9ea3aa; /* Sets the right border properties for an element using shorthand notation */
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	float: left;
	width: 950px;
	text-align: left;
	margin: 0px;
}
/*----CONTENT-colum right BLOCK 585----*/
.block_585 {
	width: 585px;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-right: 0px;
	margin-left: 0px;
	text-decoration: none;
	padding: 0px;
	float: left;
}
.block_585smal {
	width: 585px;
	text-decoration: none;
	text-align: left;
	margin: 0px;
	padding: 0px;
	float: left;
}

/*----für 2 Spalten ----*/
.box_1 {
	text-decoration: none;
	width: 300px;
	float: left;
}
.box_2 {
	text-decoration: none;
	float: left;
	margin-left: 20px;
	width: 265px;
}
.text_box_2 {
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	text-align: left;
	display: block;
}

/*.box_11 {
	text-decoration: none;
	width: 300px;
	float: left;
}
.box_22 {
	text-decoration: none;
	float: left;
	padding: 0px 0px 0px 20px;
	margin: 0px;
	height: auto;
	width: 200px;
}
.text_box_22 {
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0px;
	padding: 0px;
}
*/
/*.blockbild {
	float: left;
	width: 565px;
	margin-top: 15px;
	margin-bottom: 15px;
	background-image: url(img/Zimmer_Lageplan.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 600px;
}*/
.text_spalte1 {
	text-decoration: none;
	text-align: left;
	width: 250px;
	float: left;
}
.text_spalte2 {
	text-decoration: none;
	text-align: left;
	width: 250px;
	float: right;
}
.text_spalte3 {
	color: #666666;
	text-decoration: none;
	font-size: 12px;
	font-style: normal;
	line-height: 20px;
	text-align: left;
	width: 280px;
	float: right;
}
.text_content {
	color: #666666;
	text-decoration: none;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
}

/*--- go top ----*/
.text_go_top {
	color: #666666;
	text-decoration: none;
	font-size: 12px;
	line-height: 18px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: right;
	display: block;
	margin: 10px 0px 0px;
	padding: 0px;
}
a.link_go_top {
	color: #CC0000;
	text-decoration: none;
	font-size: 12px;
	margin: 10px;
}
a.link_go_top:link {
	text-decoration: none;
}
a.link_go_top:visited {
	text-decoration: none;
}
a.link_go_top:hover {
	text-decoration: none;
	font-weight: bold;
}
a.link_go_top:active {
	font-weight: bold;
}


/*----CONTENT- 3 colum für sitemap----*/
.text_content_spalte1 {
	text-decoration: none;
	text-align: left;
	width: 170px;
	float: left;
	margin-right: 25px;
}
.text_content_spalte2 {
	text-decoration: none;
	text-align: left;
	width: 170px;
	float: left;
	margin-right: 25px;
}
.text_content_spalte3 {
	text-decoration: none;
	text-align: left;
	width: 170px;
	float: left;
}
.formular_spalte1 {
	text-decoration: none;
	text-align: left;
	width: 150px;
	float: left;
}
.formular_spalte2 {
	text-decoration: none;
	text-align: left;
	width: 325px;
	float: right;
	padding-left: 25px;
}
.text_formular {
	color: #666666;
	text-decoration: none;
	font-size: 12px;
	font-style: normal;
	line-height: 23px;
}
.headline {
	width: 280px;
	text-decoration: none;
	height: 15px;
	background-color: #CCCCCC;
}
/*----nicht benutzt-FORMAT-Navi----*/
.navblog {
	margin-top: 0px;
	margin-bottom: 25px;
	margin-right: 0px;
	margin-left: 0px;
	text-decoration: none;
	width: 135px;
	float: left;
	clear: both;
}
.pictogramm {
	margin-left: 15px;
}
