html,
body {
  /* overflow: hidden;  Prevent scroll on narrow devices */
  margin:0;
  height:100%;
  width:100%;
}
 

/* #menu-container { height: 100%; z-index: 500; position: fixed; margin: 0; padding: 0; overflow: hidden; text-align: center; 	-webkit-backface-visibility: hidden;
} */


/* Test mit absolute statt fixed */
#menu-container { z-index: 90000; position: fixed; margin: 0; padding: 0; text-align: left; }

#menu-toggle { position: relative; z-index: 100000; top: 15px; left: 15px; display: block; padding-bottom: 20px; }

#menu  { position: fixed;
	z-index: 95000;
	height: 100%;
	background: url(../images/menu-bg.png) top right repeat-y ; 	
	left: -100%;
	top: 0;
    -webkit-transition: all .8s ease-out;
         -o-transition: all .8s ease-out;
            transition: all .8s ease-out;
	text-align: center;
	display: inline-block;

}

#menu.active { left: 0; top: 0; }
