.menu{
  position: relative;
  /*position: fixed;*/
  top: 0px;
  /*border-top: 2px solid #733800;
  border-bottom: 2px solid #733800;*/
  /*border-top: 0px solid #C67C2E;
  border-bottom: 0px solid #C67C2E;
	
  /*Schatten*/
  -moz-box-shadow:4px 4px 10px #000; /* Firefox */
  -webkit-box-shadow:4px 4px 10px #000; /* Chrome, Safari */
  -khtml-box-shadow:4px 4px 10px #000; /* Konqueror */
  box-shadow:4px 4px 10px #000; /* CSS3 */

  left: 0px;
  width: 100%);
  z-index: 100;
  height: 65px;
}

.menu ul {
  margin: 0;
  padding: 0; 
  margin-top: 5em;
}

.menu li {
  margin: 0 -25px 0 3em;
  padding: 0; }

.logo {
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 99;
}

.menuLine {
    position: relative;
    padding-top: 45px;
    height: 20px;
    width: 100%;
}

/* --------- Header------------ */
header {
  color: #eee;
  text-align: center;
  /*background: #2b2726;*/
  background-color: rgba(10, 10, 10, 1);
  /*padding-bottom: 3.3em;*/
  height: 100%;
  z-index: 100;
  /*position: fixed;*/
}

#nav
		{
			width: 60em; /* 1000 */
			font-family: 'Open Sans', sans-serif;
			/*font-weight: 400;*/
			font-size: 0.6em;
			position: absolute;
			/*left: 50%;*/
			/*margin-left: -30em; /* 30 480 */
                padding-top: 10px; /*oberen Abstand hier ändern*/
                top: 0px;
				left: 10px;
                z-index: 100;
		}

			#nav > a
			{
				display: none;
                					width: 45px; /* 50 */
					height: 20px; /* 50 */
                    padding: 8px;
                    font-size: 1.8em;
                    font-weight: 400;
                    font-family: 'Open Sans', sans-serif;
                    text-decoration:none;
                    color: #fff;
					text-align: left;
					/*text-indent: -9999px;*/
					background-color: gray;
					position: relative;
                    border-radius: 5px;
                    margin-bottom: 5px;
                    /*background-image: url('../images/menuButton.png');*/
                    background-size:     28px 26px;
                    background-repeat:   no-repeat;
                    background-position: center center;
			}

                #nav:not( :target ) > a:first-of-type,
				#nav:target > a:last-of-type
				{
					display: block;
				}

			#nav li
			{
				position: relative;
			}
				#nav li a
				{
					color: #fff;
					display: block;
                    text-align: left;
				}
				#nav li a:active
				{
					background-color: #464AD1 !important;  /*#c00 */ /* wenn Menübutton gedrückt ist*/   /* #d6871f; #F70606; #464AD1;*/
				}

			#nav span:after
			{
				width: 0;
				height: 0;
				border: 0.313em solid transparent; /* 5 */
				border-bottom: none;
				/*border-top-color: #efa585;*/
				border-top-color: #efa585;
				content: '';
				vertical-align: middle;
				display: inline-block;
				position: relative;
				/*right: -0.313em; /* 5 */
			}

			/* first level */

			#nav > ul
			{
				height: 3.75em; /* 60 */
                list-style-type: none; 
				/*background-color: #e15a1f;*/ /*Hintergundfarbe TopMenu*/
			}
				#nav > ul > li
				{
					/*width: 25%;*/
					height: 100%;
					float: left;
				}
					#nav > ul > li > a
					{
						height: 100%;
						font-size: 1.5em; /* 24 */
						line-height: 2.5em; /* 60 (24) */
						text-align: left;
						text-decoration: none;  /*RB*/
					}
						#nav > ul > li:not( :last-child ) > a
						{
							/*border-right: 1px solid #cc470d;*/ /*rechte Rahmenfarbe TopMenu*/
						}
						#nav > ul > li:hover > a,
						#nav > ul:not( :hover ) > li.active > a
						{
							/*background-color: #cc470d;*/ /*Farbe bei mouseOver im TopMenü*/    
						}


				/* second level */

				#nav li ul
				{
					/*background-color: rgb(123, 119, 118);/*#cc470d;*/
					display: none;
					position: absolute;
					top: 100%;
					width: 250px;   /*RB*/
				}
					#nav li:hover ul
					{
						display: block;
						list-style-type: none;    /*RB, Punkt ausblenden*/
					}
						#nav li:not( :first-child ):hover ul
						{
							left: -50px;   /*RB , Orig 0px*/
						}
						#nav li ul a
						{
							font-size: 1.5em; /* 20 */
							border-top: 1px solid #C6842E;
							padding: 0.75em; /* 15 (20) */
							background-color: rgb(123, 119, 118);
						}
							#nav li ul li a:hover,
							#nav li ul:not( :hover ) li.active a
							{
								background-color: #464AD1;   /*#e15a1f; /*Farbe bei mouseOver im PopUpMenü*/   /* #d6871f; #F70606; #464AD1;*/
							}



        /*Anzeige des Burger-Menü-Buttons*/
		@media only screen and ( max-width: 502em ) /* 640 */ 
		{
			html
			{
				font-size: 100%; /* 12 */
			}

			#nav
			{
				position: absolute;
                padding-top: 10px; /*oberen Abstand hier ändern*/
                top: 0px;
				left: 10px;
                z-index: 100;
			}
				#nav > a  /*Burger-Menübutton*/
				{
					width: 45px; /* 50 */
					height: 20px; /* 50 */
                    padding: 8px;
                    font-size: 1.8em;
                    font-weight: 400;
                    font-family: 'Open Sans', sans-serif;
                    text-decoration:none;
                    color: #fff;
					text-align: left;
					/*text-indent: -9999px;*/
					background-color: gray;
					position: relative;
                    border-radius: 5px;
                    margin-bottom: 5px;
                    /*background-image: url('../images/menuButton.png');*/
                    background-size:     28px 26px;
                    background-repeat:   no-repeat;
                    background-position: center center;
				}

				#nav:not( :target ) > a:first-of-type,
				#nav:target > a:last-of-type
				{
					display: block;
				}


			/* first level */

			#nav > ul
			{
				height: auto;
				display: none;
				position: absolute;
				left: -20px;  /*Position des Menüs*/
				/*right: -10px;*/
                width: 250px;
                padding: 0;
			}
				#nav:target > ul
				{
					display: block;
				}
				#nav > ul > li
				{
					width: auto;
					float: none;
                    background-color: rgb(123, 119, 118); 
                    left: -22px;
				}
					#nav > ul > li > a
					{
						height: auto;
						text-align: left;
						padding: 0 1.833em; /* 20 (24) */
					}
						#nav > ul > li:not( :last-child ) > a
						{
                            /* Oranger Strich zwischen Menüpunkten*/
							border-right: none;
							border-bottom: 1px solid #F70606;    /* #d6871f; #F70606; #464AD1;*/
                            width: 193px;
						}


				/* second level */

				#nav li ul
				{
					position: static;
					padding: 0.0em; /* 20 */
					padding-top: 0;
                    margin-top: -1px;
				}
		}
