@charset "utf-8";
/* CSS Document */
/* muli-300 - latin */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/muli-v12-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Muli Light'), local('Muli-Light'),
       url('../fonts/muli-v12-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/muli-v12-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/muli-v12-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/muli-v12-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/muli-v12-latin-300.svg#Muli') format('svg'); /* Legacy iOS */
}

/* muli-300italic - latin */
@font-face {
  font-family: 'Muli';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/muli-v12-latin-300italic.eot'); /* IE9 Compat Modes */
  src: local('Muli Light Italic'), local('Muli-LightItalic'),
       url('../fonts/muli-v12-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/muli-v12-latin-300italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/muli-v12-latin-300italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/muli-v12-latin-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/muli-v12-latin-300italic.svg#Muli') format('svg'); /* Legacy iOS */
}

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

/* muli-900italic - latin */
@font-face {
  font-family: 'Muli';
  font-style: italic;
  font-weight: 900;
  src: url('../fonts/muli-v12-latin-900italic.eot'); /* IE9 Compat Modes */
  src: local('Muli Black Italic'), local('Muli-BlackItalic'),
       url('../fonts/muli-v12-latin-900italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/muli-v12-latin-900italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/muli-v12-latin-900italic.woff') format('woff'), /* Modern Browsers */
       url('../fonts/muli-v12-latin-900italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/muli-v12-latin-900italic.svg#Muli') format('svg'); /* Legacy iOS */
}
body, html {
	font-family: 'Muli';
	font-size:16px;
	width:100%;
  	min-height:101%;
	margin:0px;
	padding:0px;
    background-color:#e0e0e0;
}
.container {
	position: relative;
	display:block;
	text-align:center;
	width:80%;
	max-width:1000px;
	margin:0 auto;
    background-color:#fff;
}
.bild {
    background-color:#ccc;
    height:333px;
}
.header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
  	top:0px;
	width:80%;
	max-width:1000px;
    z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0px 50px 0px 0px;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
  display: inline-block;
}
.header li {
    display: inline-block;
    width:100%;
}
.header li a {
    display: block;
    width:100%;
    padding: 10px 20px;
    text-decoration: none;
}

.header li a:hover {
    background-color: #fff;
}
.header li.current a {
  border-bottom:2px solid #879fb3;
}
.header .logo {
    display: block;
    float:left;
    font-size: 2em;
    padding: 20px 5%;
    text-decoration: none;
}

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}
.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}
.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}
.header .menu-icon .navicon:before {
  top: 5px;
}
.header .menu-icon .navicon:after {
  top: -5px;
}
.header .menu-btn {
  display: none;
}
.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}
.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
a:link, a:visited {
  color:#666;
}
a:hover {
  color:#879fb3;
  color:#006639;
}
a.logo:link, a.logo:visited {
  color:#006639;
}
.moses_index_item {
  margin-bottom:3px;
}
.moses_index_item a:before {
  content:'\25BA \00a0';
}
.moses_index_item a {
	font-family: 'Muli';
	font-size:16px;
  	font-weight:900;
  	font-style:italic;
  	text-decoration:none;
}
.moses_index_desc {
  margin-bottom:10px;
}
.pageNavPrev a, .pageNavNext a {
  text-decoration:none;
  font-weight: 900;
  font-style: italic;
}
.mmnews img {
  margin:0px 0px 15px 15px;
  width:50%;
  height:auto;
}
.footer {
  background-color:#c0d0bc;
}
h1,h2,h3,h4 {
  font-style: normal;
  font-weight: 900;
}
h1 {font-size:1.3em;}
h2 {font-size:1.1em;}
h3 {font-size:1em;}
h4 {font-size:0.9em;}


ol {
  font-weight:bold;
  padding-left:20px;
}

ol li p, ol li table {
  font-weight:normal;
}
ol li li:before {
  content: counter(level1) " ";
  counter-increment: level1;
}

ol li li li:before {
  content: counter(level1) "." counter(level2) "." counter(level3) " ";
  counter-increment: level3;
}
ol li ul li:before {
  content:"";
}
ol li ul li {
  font-weight:normal;
}


@media (min-width: 64em) {
  body {min-height:101%;}
.bild {
  		width:100%;
  		height:auto;
        padding-top:115px;
    }
.header .logo {
        display:block;
        width:90%;
    }   
.header li {
      float:left;
        display:inline;
        width:auto;
    padding: 10px 30px;
  }
.header li a {
    padding: 5px 0px;
  }
  .header li.current a {
  	border-bottom:2px solid #006639;
  }
.header .menu {
    clear: none;
    max-height: none;
  }
.header .menu-icon {
    display: none;
  }
.footer a {
    text-decoration:none;
  	color:#333;
    font-size:0.9em;
  }

  /*
  960 Grid System ~ Core CSS.
  Learn more ~ http://960.gs/

  Licensed under GPL and MIT.
*/

/*
  Forces backgrounds to span full width,
  even if there is horizontal scrolling.
  Increase this if your layout is wider.

  Note: IE6 works fine without this fix.
*/

body {
	width:100%;
  min-width: 350px;
}

/* `Container
----------------------------------------------------------------------------------------------------*/

.container_12 {
  margin:10px auto;
  width: 100%;
  display:inline-block;
}
.container_12-1 {
  margin:10px auto;
  width: 100%;
  display:inline-block;
}
  .container_12 img {
    width:100%;
  }
  .container_12 .mmnews img {
    width:50%;
  }
   .container_12 td {
    padding-bottom:10px;
  }
  .container_12 .grid_3 .leer {
    display:block;
    height:150px;
  }
/* `Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
  display: inline-block;
  margin-right: 1%;
  margin-left: 1%;
  text-align: left;
  vertical-align:top;
}

.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5,
.push_6, .pull_6,
.push_7, .pull_7,
.push_8, .pull_8,
.push_9, .pull_9,
.push_10, .pull_10,
.push_11, .pull_11 {
  position: relative;
}

/* `Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
  margin-right: 0;
}

.omega {
  margin-left: 0;
}

/* `Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .grid_1 {
  width: 8.33333333%;
  min-width:100px;
}

.container_12 .grid_2 {
  width: 16.66666667%;
	max-width:200px;
}

.container_12 .grid_3 {
  width: 23%;
  max-width:300px;
}

.container_12 .grid_4 {
  width: 33.33333333%;
	max-width:400px;
}

.container_12 .grid_5 {
  width: 41.66666667%;
	max-width:500px;
}

.container_12 .grid_6 {
  width: 50%;
  min-width:300px;
  max-width:600px;
}

.container_12 .grid_7 {
  width: 58.33333333%;
	max-width:700px;
}

.container_12 .grid_8 {
  width: 66.66666666%;
	max-width:800px;
}

.container_12 .grid_9 {
  width: 70%;
	max-width:900px;
}

.container_12 .grid_10 {
  width: 83.33333333%;
	max-width:1000px;
}

.container_12 .grid_11 {
  width: 91.66666666%;
	max-width:1100px;
}

.container_12 .grid_12 {
  width: 90%;
  min-width:300px;
	max-width:1000px;
}

/* `Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .prefix_1 {
  padding-right: 8.33333333%;
}

.container_12 .prefix_2 {
  padding-right: 16.66666667%;
}

.container_12 .prefix_3 {
  padding-right: 25%;
}

.container_12 .prefix_4 {
  padding-right: 320px;
}

.container_12 .prefix_5 {
  padding-right: 400px;
}

.container_12 .prefix_6 {
  padding-right: 50%;
}

.container_12 .prefix_7 {
  padding-right: 560px;
}

.container_12 .prefix_8 {
  padding-right: 640px;
}

.container_12 .prefix_9 {
  padding-right: 720px;
}

.container_12 .prefix_10 {
  padding-right: 800px;
}

.container_12 .prefix_11 {
  padding-right: 880px;
}

/* `Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .suffix_1 {
  padding-left: 8.33333333%;
}

.container_12 .suffix_2 {
  padding-left: 16.66666666%;
}

.container_12 .suffix_3 {
  padding-left: 25%;
}

.container_12 .suffix_4 {
  padding-left: 320px;
}

.container_12 .suffix_5 {
  padding-left: 400px;
}

.container_12 .suffix_6 {
  padding-left: 50%;
}

.container_12 .suffix_7 {
  padding-left: 560px;
}

.container_12 .suffix_8 {
  padding-left: 60%;
}

.container_12 .suffix_9,.container_12-1 .suffix_9 {
  padding-left: 60%;
}

.container_12 .suffix_10 {
  padding-left: 800px;
}

.container_12 .suffix_11 {
  padding-left: 880px;
}

/* `Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .push_1 {
  right: 80px;
}

.container_12 .push_2 {
  right: 160px;
}

.container_12 .push_3 {
  right: 240px;
}

.container_12 .push_4 {
  right: 320px;
}

.container_12 .push_5 {
  right: 400px;
}

.container_12 .push_6 {
  right: 480px;
}

.container_12 .push_7 {
  right: 560px;
}

.container_12 .push_8 {
  right: 640px;
}

.container_12 .push_9 {
  right: 720px;
}

.container_12 .push_10 {
  right: 800px;
}

.container_12 .push_11 {
  right: 880px;
}

/* `Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .pull_1 {
  right: -80px;
}

.container_12 .pull_2 {
  right: -160px;
}

.container_12 .pull_3 {
  right: -240px;
}

.container_12 .pull_4 {
  right: -320px;
}

.container_12 .pull_5 {
  right: -400px;
}

.container_12 .pull_6 {
  right: -480px;
}

.container_12 .pull_7 {
  right: -560px;
}

.container_12 .pull_8 {
  right: -640px;
}

.container_12 .pull_9 {
  right: -720px;
}

.container_12 .pull_10 {
  right: -800px;
}

.container_12 .pull_11 {
  right: -880px;
}

/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after,
.container_12:before,
.container_12:after {
  content: '.';
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}

.clearfix:after,
.container_12:after {
  clear: both;
}

/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix,
.container_12 {
  zoom: 1;
}
}
@media (max-width: 34em) {
body, html {
	font-family: 'Muli';
	font-size:16px;
	width:100%;
  	min-height:100%;
	margin:0px;
	padding:0px;
    background-color:#e0e0e0;
}
.bild {
	width:100%;
	height:auto;
	margin-top:155px;
    }
.container {
	position: relative;
	display:block;
	text-align:left;
	width:100%;
	max-width:1000px;
	margin:0 auto;
  background-color:#fff;
}
.header {
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
	width:100%;
	max-width:1000px;
  z-index: 3;
}
.header .logo {
  text-align:center;
  padding: 20px 5% 0px 5%;
  }
.container_12 {
  padding:0px 1% 20px 1%;
  margin:0;
  width: 98%;
  display:inline-block;
}
  .container_12 .grid_3 .leer {
    display:none;
  }
  .container_12 td {
    padding-bottom:10px;
  }
.grid_12 {
    padding:0px 1%;
    width:98%;
  }
.footer {
    padding:10px 0px 10px 0px;
  }
.footer a {
    display:block;
  padding:0px 0px 2% 2%;}
}