@charset "UTF-8";
/* CSS Document */

/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v29-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/open-sans-v29-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v29-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v29-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v29-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v29-latin-300.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v29-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/open-sans-v29-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v29-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/open-sans-v29-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/open-sans-v29-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/open-sans-v29-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}


*,
*:before,
*:after {
	margin: 0;padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; }

html, body {
	background-color:#fafafa;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-size:16px;
	}
	
#wrap {
	margin: 0 auto;
	width:100%;
	max-width:1700px;
	background-color:#fff;
	}


/* ################################## HEADER Resize ###################################### */

header {
	width:100%;
  	height: 120px;
  	position: fixed;
  	top: 0;
  	left: 0;
  	z-index: 999;
  	border-bottom: 3px solid #00a19a;
  	background-color:rgba(240,240,240,0.8);
  	-webkit-transition: height 0.3s;
  	-moz-transition: height 0.3s;
  	-ms-transition: height 0.3s;
  	-o-transition: height 0.3s;
  	transition: height 0.3s;
  	}
	.inner {
		max-width:1700px;
		margin:0 auto;
		}
  	header .logo {
    	float:right;
		margin-top:15px;
		margin-right:4%;
		max-width:466px;
		height:90px;
    	-webkit-transition: all 0.3s;
    	-moz-transition: all 0.3s;
    	-ms-transition: all 0.3s;
    	-o-transition: all 0.3s;
    	transition: all 0.3s;
		}
		header .logo img {
			width:100%;
			height:auto;
			}

	header.smaller {
    	height: 75px;
		}
    header.smaller .logo {
      	max-width: 300px;
      	height: auto;
		margin-top:7px;
		margin-right:60px;
		}
	  	header.smaller .logo img {
			width:100%;
		  	height:auto;
		  	}
					
/* ################################## NAVIGATION (Desktop) ###################################### */
					
header #menu-toggle-primary {display:none;}

header #menu-toggle-primary a:before {	-webkit-font-smoothing: antialiased;}
header #menu-toggle-primary a.close-menu-primary:before {	}

/* Hide Menu */
header #menu-primary-items{	display: block;}
header #menu-toggle-primary a.close-menu-primary{	display: none;}

/* Show Menu */
header #menu-primary:target #menu-primary-items{	display: block;}
header #menu-primary:target #menu-toggle-primary a.open-menu-primary{	display: none;}
header #menu-primary:target #menu-toggle-primary a.close-menu-primary{	display: block;}

header .menu-wrap {
	display:block;
	position:relative;
	top: 75px;
	left:3.5%
	}
header.smaller .menu-wrap {
	top: 0px;
	line-height:75px;
	}

header .menu-mobile {
	display:none;
	}
	
/*.menu-wrap ul {border-bottom: 5px solid #2c589c;}*/

header .menu-wrap ul li {
	display:inline-block;
	margin-right:30px;
	}
	header .menu-wrap ul li:last-child {
		margin-right:0px;
		}

/* Links */

header .menu-wrap ul li a {
	text-decoration:none;
	color:#202020;
	font-weight:400;
	display:inline-block;
	line-height:45px;
	}

	header .menu-wrap ul li a:hover,
	header .menu-wrap ul li:hover > a {
		color:#00a19a;
		}
		
		header .menu-wrap ul li a.aktiv {
			color:#00a19a;
			}

/* ############ UNTERMENUE #################### */

/* ############ UNTERMENUE #################### */

header .menu-wrap ul li ul {
	position: absolute;
	min-width:135px;
	width:auto;
	opacity: 0;
	-webkit-transition: opacity .25s ease .1s;
	-moz-transition: opacity .25s ease .1s;
	-o-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	transition: opacity .25s ease .1s;
}

header .menu-wrap ul li:hover > ul { opacity: 1; }

header .menu-wrap ul li ul li {
	display:block;
	height: 0;
	overflow: hidden;
	padding: 0;
	float:none;
	margin-right:0%;
	-webkit-transition: height .25s ease .1s;
	-moz-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
}

header .menu-wrap ul li:hover > ul li {
	height: 40px;
	overflow: visible;
	padding: 0;
	margin-bottom:1px;
	}

header .menu-wrap ul li ul li a {
	display:block;
	color:#fff;
	margin: 0;
	line-height:40px;
	padding-left:5px;
	padding-right:10px;
	background-color: #00a19a;
	background-image:none;
	border-bottom:1px solid #10b5ae;
	text-align:left;
	}
	header .menu-wrap ul li ul li a:hover,
	header .menu-wrap ul li:hover ul li > a {
		background-image: none;
		background-position: 0px -40px;
		background-repeat: no-repeat;
		}
		header .menu-wrap ul li:hover ul li > a:hover {
			background-color:#10b5ae;
			color: #fff;
			}
		header .menu-wrap ul li:hover ul li > a.aktiv {
			background-color:#10b5ae;
			color: #fff;
			}

/* ################################## E N D E   NAVIGATION (Desktop) ###################################### */
					

/* =Extras
-------------------------------------------------------------- */
.clearfix:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
	}
	
.clear-left {clear:left;}
.clear-right {clear:right;}
.clear-both {clear:both;}

#slider {
	width:100%;
	max-height:460px;
	overflow:hidden;
	position:relative;
	top:0;
	left:0;
	z-index:1;
	}
	#slider img {
		width:100%;
		height:auto;
		}
		
#main {
	width:100%;
	}

#spalte-100proz {
	width:100%;
	min-height:600px;
	padding:1.5% 1.5% 3.5% 3.5%;
	}

#spalte-li {
	float:left;
	width:65%;
	padding:1.5% 0 3.5% 3.5%;
	}
	
#spalte-re {
	margin-left:68%;
	padding:15px 15px 45px 0;
	}

#spalte-li-50proz {
	float:left;
	width:48%;
	padding:1.5% 0 3.5% 3.5%;
	}
#spalte-re-50proz {
	margin-left:52%;
	padding:15px 15px 45px 0;
	}


h1, h2, h3, h4, h5 {
	font-weight:300;
	color:#00a19a;
	}
h1 {
	margin:0 0 15px 0;
	font-size:1.5em;
	}
	
h2 {margin:0 0 10px 0;
	font-size:1.35em;
	}
	
h3 {margin:0 0 8px 0;
	font-size:1.20em;
	}

#main p {
	margin:15px 0;
	line-height:140%;
	}
	
#spalte-li ul {
	margin: 0 0 15px 18px;
	}
	
#main a	{color:#000;}	
#main a:hover
 	{color:#00a19a;}	

#googlemap {
	max-width: 100%;
	height:auto;
	}
	#googlemap img {
		width:100%;
		height:auto;
		}


/* =Aktuelles
-------------------------------------------------------------- */
.aktbox {
	width:100%;
	background-color:#fafafa;
	border:1px solid #cdcdcd;
	padding:10px;
	margin-bottom:20px;
	-moz-border-radius:8px 8px 8px 8px; /* Firefox */
	-webkit-border-radius:8px 8px 8px 8px; /* Chrome, Safari */
	-khtml-border-radius:8px 8px 8px 8px; /* Konqueror */
	border-radius:8px 8px 8px 8px; /* CSS3 */
	behavior:url(border-radius.htc); /* Internet Explorer */
	}
	.aktbild {
		float:left;
		max-width:30%;
		height:auto;
		margin-right:10px;
		}
		.aktbild img {
			width:100%;
			height:auto;
			}
	.aktbox h3 {
		margin: 0 0 8px 0;
		}
	#main .aktbox p {
		margin:0 0 8px 0;
		}

	#main .aktbox p.weiter {
	margin: 0;
	font-size:0.8em;
	
	color:#939393;
	}
	p.weiter a {
		text-decoration:none;	
		}
		p.weiter a:hover {
			color:#00a19a;
			text-decoration:underline;
			}
			

.unt-img {
	float:right;
	width:30%;
	margin-left:20px;
	margin-bottom:20px;
	}
	.unt-img img {
		width:100%;
		height:auto;
		-moz-border-radius:8px 8px 8px 8px; /* Firefox */
		-webkit-border-radius:8px 8px 8px 8px; /* Chrome, Safari */
		-khtml-border-radius:8px 8px 8px 8px; /* Konqueror */
		border-radius:8px 8px 8px 8px; /* CSS3 */
		behavior:url(border-radius.htc); /* Internet Explorer */
		}
			
#main a.button-bewerben {
		margin-top:10px;
		display:block;
		color:#fff;
		font-weight:400;
		border: none;
    	background:url(../images/template/button_send.png) top left repeat-x;
		width:auto;
		max-width:250px;
		padding:0 15px 0 15px;
		height:45px;
		line-height:45px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		behavior:url(border-radius.htc); /* Internet Explorer */
		cursor:pointer;
		text-align:center;
		text-decoration:none;
		}
		#main a.button-bewerben:hover {
    	background:url(../images/template/button_send.png) 0 -45px repeat-x;
		text-shadow: 0.2em 0.2em #333
		}

.bild-re {
	float:right;
	margin: 0 0 15px 15px;
	width:45%;
	}
	.bild-re img {
		width:100%;
		max-width:800px;
		height:auto;
		}
	#main .bild-re p {
		text-align:right;
		font-size:0.7em;
		margin:5px 0 0 0;
		color:rgba(0,0,0,0.4)
		}

			
/* =Infoboxen / Rueckruf-Service
-------------------------------------------------------------- */
	
.infobox {
	background-color:#fafafa;
	border:1px solid #cdcdcd;
	padding:10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	behavior:url(border-radius.htc); /* Internet Explorer */
	margin-bottom:20px;
	}
	.pikto {
		float:left;
		margin-top:2px;
		margin-right:10px;
		}
	.infobox h3 {
		color:#000;
		font-size:1.45em;
		font-weight:600;
		line-height:120%;
		margin-bottom:0;
		}
		.infobox h3.einzeilig {
			margin-top:13px;
			margin-bottom:7px;
			}
			
	#main .infobox a.telefon {
		color:#000;
		text-decoration:none;
		}
		#main .infobox a.telefon:hover {
			text-decoration:underline;
			color:#00a19a;
			}
	
	.required {
		text-align:right;
		font-size:0.8em;
		}
		
	/*.infobox*/ input::-moz-focus-inner, input::-moz-focus-inner {   
        border : 0px;
	    } 
		/*for IE8 */
		/*.infobox*/ input[type="submit"]:focus, input[type="button"]:focus {     
        	outline : none; 
		    }
		
	/*.infobox*/ input[type=text] {
		border:1px solid #cdcdcd;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		behavior:url(border-radius.htc); /* Internet Explorer */
		margin-bottom:10px;
		line-height:35px;
		height:35px;
		width:100%;
		padding-left:5px;
		}
		
		textarea {
			width:100%;
			min-height:150px;
			border:1px solid #cdcdcd;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
			behavior:url(border-radius.htc); /* Internet Explorer */
			margin-bottom:10px;
			padding-left:5px;
			}

		/*.infobox*/ input[type=text]:focus {
			outline: none;
			border: 1px solid #208ab4;
			/* Styles f&uuml;r Schattierung */
			-moz-box-shadow: 0px 0px 3px #2b2b2b;
			-webkit-box-shadow: 0px 0px 3px #2b2b2b;
			box-shadow: 0px 0px 3px #2b2b2b;
			/* For IE 8 */
			-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#2b2b2b')";
			/* For IE 5.5 - 7 */
			filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#2b2b2b')";
			/* Ende Schattierung */
			}
			/*.infobox*/ input[type=text]::-moz-focus-outline {border:0;}
		
	/*.infobox*/ input[type=checkbox] {
		border:1px solid #cdcdcd;
		float:left;
		}
		.schnellstens {
			color:#999;
			margin-left:20px;
			}
		.checkboxtext {
			width:100%;
			color:#999;
			margin-left:20px;
			}
			
	.buttonsend_rueck {
		margin-top:10px;
		margin-right:7px;
		display:inline-block;
		color:#fff;
		font-weight:400;
		border: none;
    	background:url(../images/template/button_send.png) top left repeat-x;
		width:120px;
		height:45px;
		line-height:45px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		behavior:url(border-radius.htc); /* Internet Explorer */
		cursor:pointer;
		text-align:center;
		}
	.buttonsend_rueck:hover {
    	background:url(../images/template/button_send.png) 0 -45px repeat-x;
		text-shadow: 0.2em 0.2em #333
		}

	.buttondelete_rueck {
		margin-top:10px;
		display:inline-block;
		color:#fff;
		font-weight:400;
		border: none;
    	background:url(../images/template/button_delete.png) top left repeat-x;
		width:120px;
		height:45px;
		line-height:45px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		behavior:url(border-radius.htc); /* Internet Explorer */
		cursor:pointer;
		text-align:center;
		}
	.buttondelete_rueck:hover {
		background:url(../images/template/button_delete.png) 0 -45px repeat-x;
		text-shadow: 0.2em 0.2em #333
		}
		
	.hinweis {
		margin-top:10px;
		text-align:center;
		font-size:0.8em;
		}
			
			
	
/* =Footer
-------------------------------------------------------------- */
	
footer {
	width:100%;
	background-color:#00a19a;
	min-height:120px;
	padding:1% 3.5% 20px 3.5%;
	color:#fff;
	}
	
	footer h3 {
		color:#fff;
		font-weight:400;
		margin-bottom:5px;
		}
	
	footer a, footer a:link, footer a:visited, footer a:active {
		color:#fff;
		text-decoration:none;
		}
		footer a:hover {
			text-decoration:underline;
			}
			footer a.aktiv {
				font-weight:bold;
				}
	
	footer #footer-li {
		float:left;
		width:50%;
		line-height:125%;
		}
		footer #footer-li .footer-li-sp1-1 {
			float:left;
			display:inline-block;
			width:150px;
			font-size:0.8em;
			}
		footer #footer-li .footer-li-sp1-2 {
			display:inline-block;
			width:270px;
			font-size:0.8em;
			}
			.telfax {
				display:inline-block;
				width:55px;
				}

			
	footer #footer-re {
		padding-right:0;
		margin-left:51%;
		text-align:right;
		}
		footer #footer-re a {
			font-size:0.8em;
			}
		footer #footer-re .poweredby {
			position:relative;
			top:45px;
			}
		
		
		
/* ################################## T A B L E T   Styles ###################################### */
					
@media screen and (max-width: 885px) {
html, body {
	background-color:#fff;
	}

/* =Header
-------------------------------------------------------------- */

header {
	min-height: 160px;
/*	display:block;*/
	position: relative;
	}

header .logo {
   	float:none;
	width:100%;
	max-width:100%;
	height:82px;
	margin-top:0px;
	margin-right:0%;
	padding:10px 0 0 0;
	text-align:center;
	}
		header .logo img {
			max-width:450px;
			height:auto;
			}
  
header nav {
    float: none;
    text-align: center;
    margin: 0 auto;
	margin-top:15px;
	}
	
header .menu-wrap {left:0%}
	
#slider {top:0px;}

#spalte-li {
	float:none;
	width:98%;
	padding-top:15px;
	padding-left: 15px;
	}
	
#spalte-re {
	width:100%;
	margin-left:0px;
	padding-top:15px;
	padding-left: 15px;
	}
	
#spalte-li-50proz {
	float:none;
	width:100%;
	padding:1.5% 15px 3.5% 3.5%;
	}
#spalte-re-50proz {
	margin-left:0%;
	padding:1.5% 15px 3.5% 3.5%;
	}
	
.aktbox {
	width:98%;
	}
	
.bild-re {
	float:none;
	margin: 0 0 25px 0px;
	width:100%;
	}
	
footer {
	padding:20px 3.5% 20px 3.5%;
	color:#fff;
	min-height:150px;
	}
	
	footer #footer-li {
		float:left;
		width:50%;
		line-height:125%;
		}
			
	footer #footer-re {
		padding-right:0;
		margin-left:52%;
		text-align:right;
		}
	
/* ################################## NAVIGATION (Tablet-Version) ###################################### */

header #menu-toggle-primary {display:none;}

header #menu-toggle-primary a:before {	-webkit-font-smoothing: antialiased;}
header #menu-toggle-primary a.close-menu-primary:before {	}

/* Hide Menu */
header #menu-primary-items{	display: block;}
header #menu-toggle-primary a.close-menu-primary{	display: none;}

/* Show Menu */
header #menu-primary:target #menu-primary-items{	display: block;}
header #menu-primary:target #menu-toggle-primary a.open-menu-primary{	display: none;}
header #menu-primary:target #menu-toggle-primary a.close-menu-primary{	display: block;}
	
header .menu-wrap {
	position:relative;
	top: 15px;
	text-align:center;
	}
	
	header .menu-wrap ul li {margin-right:20px;}
	header .menu-wrap li:last-child {margin-right: 0px;}
	
	header .menu-wrap ul li a {
		text-decoration:none;
		color:#202020;
		margin-left: 0px;
		font-weight:400;
	}
	
header .menu-mobile {
	display:none;
	}

/* ################################## E N D E   NAVIGATION (Tablet) ###################################### */


	
}
/* ENDE STYLES TABLET */


/* ################################## M O B I L E   Styles ###################################### */

@media screen and (max-width: 625px) {

header {
	min-height: 190px;
	display:block;
	position: relative;
	overflow:visible;
	background-color:rgba(235,235,235,1);
	}

header .logo {
   	float:none;
	width:100%;
	max-width:100%;
	height:90px;
	margin-top:0px;
	margin-right:0px;
	padding:10px 10px 0 10px;
	text-align:center;
		}
	/*	header .logo img {
			max-width:310px;
			height:auto;
			}*/
  
header nav {
    display: block;
    float: none;
    text-align: center;
    margin: 0 auto;
	margin-top:0px;
	}
	
.aktbild {
		float:none;
		max-width:100%;
		height:auto;
		margin-right:0px;
		margin-bottom:10px;
		}
		

.unt-img {
	float:none;
	width:100%;
	margin-left:0px;
	margin-bottom:15px;
	}
	
		
footer {
	padding:10px 15px 15px 15px;
	}
	
	footer #footer-li {
		float:none;
		width:100%;
		}
	/*	footer #footer-li .footer-li-sp1-1 {
			display:inline-block;
			min-width:155px;
			font-size:0.8em;
			}
		footer #footer-li .footer-li-sp1-2 {
			display:inline-block;
			min-width:175px;
			font-size:0.8em;
			}*/
			
	footer #footer-re {
		padding-top:25px;
		padding-right:0px;
		padding-bottom:15px;
		margin-left:0%;
		text-align:left;
		}

		footer #footer-re .poweredby {
			position:relative;
			top:15px;
			}
		

/* ################################## NAVIGATION (Mobil-Version) ###################################### */

#slider {display:none;}
	
header .menu-container {
	width:100%;
	}

header .menu-desktop {display:none;}

header #menu-toggle-primary {
	display:block;
	/*float:left;*/
	position:relative;
	top:30px;
	left:0px;
	z-index:9999999;
	}

header #menu-toggle-primary a {
	display: block;
	margin-left:10px;
	line-height:35px;
	border:1px solid gray;
	background: #999;
	color:#fff;
	font-size:1.0em;
	font-weight:300;
	width:93%;
	padding:5px 5px 5px 5px;
	text-align:center;
	text-decoration:none;
	-moz-border-radius:8px 8px 8px 8px; /* Firefox */
	-webkit-border-radius:8px 8px 8px 8px; /* Chrome, Safari */
	-khtml-border-radius:8px 8px 8px 8px; /* Konqueror */
	border-radius:8px 8px 8px 8px; /* CSS3 */
	behavior:url(border-radius.htc); /* Internet Explorer */
	box-sizing:border-box;
	}
header #menu-toggle-primary a:hover {
		background: #00a19a;
		color:#fff;
		border:1px solid #0d7570;
		}
	
header #menu-toggle-primary a:before {	-webkit-font-smoothing: antialiased;}
header #menu-toggle-primary a.close-menu-primary:before {	}

/* Hide Menu */
header #menu-primary-items{	display: none;}
header #menu-toggle-primary a.close-menu-primary{	display: none;}

/* Show Menu */
header #menu-primary:target #menu-primary-items{	display: block;}
header #menu-primary:target #menu-toggle-primary a.open-menu-primary{	display: none;}
header #menu-primary:target #menu-toggle-primary a.close-menu-primary{
	display: block;
	background-color: #00a19a;
	border-top:1px solid #0d7570;
	border-left:1px solid #0d7570;
	border-right:1px solid #0d7570;
	border-bottom: none;
	color:#fff;
	padding:5px 5px 5px 5px;
	-moz-border-radius:8px 8px 0px 0px; /* Firefox */
	-webkit-border-radius:8px 8px 0px 0px; /* Chrome, Safari */
	-khtml-border-radius:8px 8px 0px 0px; /* Konqueror */
	border-radius:8px 8px 0px 0px; /* CSS3 */
	behavior:url(border-radius.htc); /* Internet Explorer */
	}

header .menu-wrap {
	width:92.6%;
	float:none;
	position:relative;
	left:10px;
	top:30px;
	background-color:none/*#00a19a*/;
	}
	.menu-desktop {display:none;}
	header .menu-mobile {display:block;}

header .menu-wrap ul {
	margin:0;
	padding:0;
	}
header .menu-wrap ul li {
	list-style-type:none;
	width:100%;
	margin-bottom:0px;
	margin-right:0px;
	border-top:1px solid #0d7570;
	border-left:1px solid #0d7570;
	border-right:1px solid #0d7570;
	border-bottom: none;
	}
	header .menu-wrap ul li:last-child {
		border-bottom:1px solid #0d7570;
		}
header .menu-wrap ul li a {
	line-height:60px;
	display:block;
	background-image:none;
	background-color:#f6f6f6;
	color:#666;
	text-align:center;
	text-decoration:none;
	text-shadow: none;
	
	}

header .menu-wrap ul li a:hover,
header .menu-wrap ul li a:active,
header .menu-wrap ul li:hover a,
header .menu-wrap ul li:hover a:active {
		background-image: none;
		background-color:#00a19a;
		color:#fff;
		}

/* ############ UNTERMENUE #################### */

	header .menu-wrap li ul{
		display:none;
		}
	header .menu-wrap li:hover ul{
		display:none;
		/*opacity:1;*/
		}
		
/* ################################## E N D E   NAVIGATION (Mobile) ###################################### */

}

			