/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */
body {
	background-color: #ece8e5;
	color: #54420A;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
}
nav {
	height: 100%;
	width: 160px;
	background: #A4A4A4;
	font-size: 13pt;
	position: relative;
	border-bottom: 2px solid #A4A4A4;
}
nav ul {
	padding: 0;
	margin: 0 auto;
	width: 160px;
	height: auto;
}
nav li {
	display: inline;
	float: left;
}
nav a {
	color: #993300;
	display: inline-block;
	width: 160px;
	text-align: center;
	text-decoration: none;
	font-size: 12pt;
	font-weight: bold;
}
nav li a {
    border-bottom: 1px solid #9A3403;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	background-color: #8c99a4;
	font-size: 12pt;
	font-weight: bold;
}
nav a#pull {
	display: none;
}
.Menu2 {
	color: #CDCDCD;
	text-decoration : none;
	font-size : 18px;
	font-weight : bold;
}
.Menu2:hover {
	color: #ff0000;
	text-decoration: none;
	font-size : 18px;
	font-weight : bold;
}
/*Styles for screen 600px and lower*/
@media screen and (max-width: 1024px) {
	nav 
{ 
  		height: 40px; /*Höhe vom Außenrahmen*/
		width:94%;
		position:relative;
        margin-left: auto;
        margin-right: auto	
  	    top: 0px; /*Positionierung vom Außenrahmen*/
		background-color: #A4A4A4;
}
  	nav ul 
{
  		width: 100%;
  		display: none;
  		height: auto;
}
  	nav li {
  		width: 100%;
  		float: left;
  		position: relative;
}
  	nav li a 
{
		border-bottom: 1px solid #9A3403;
	  	width: 100%;
}
  	nav a 
{
	  	text-align: center;
	  	width: 100%;
}
	
	#pull 
{
  position: absolute;
  cursor: pointer;
  text-align: right;
  padding: 5px 80px 10px 10px; /* positionierung schrift MENU und hamburger: top right bottom left */
      background-color: #A4A4A4;
      border: 2px solid #CDCDCD;
      border-radius: 15px; 
	  text-indent: 95px;
}
#pull span, 
#pull span:before, 
#pull span:after {
  position: absolute;
  top: 10px;
  height: 5px;  /*Dicke der drei Hamburger Linien*/
  width: 35px;  /*Breite von den drei Hamburger Linien*/
  display: block;
  background: #9A3403;
  border-radius: 15px; /*Abrundung der drei Hamburger Linien*/
  content: '';
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
#pull span:before {
  top: -10px;
}
#pull span:after {
  bottom: -10px;
}
#pull.active span {
  background-color: transparent; /*Mittlerer X Balken wird unsichtbar */
}
#pull.active span:before { /*Position erster X Balken */
  top: 0px;
}

#pull.active span:after {  /*Position zweiter X Balken */
  top: 0px;
}
#pull.active span:before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pull.active span:after {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
	
	nav a#pull {
		display: block;
		background-color: #B1B1B1;
		width: 80px; /*Breite Innenrahmen*/
		height: 10px; /*Höhe Innenrahmen*/
		left: 0px;
		position: absolute; /*Absolut bleibt Hamburger stehen, relativ rutscht Hamburger nach unten*/
		text-align: right;
		top: 5px; /*Abstand Innenrahmen zu Außenrahmen*/
}
	nav a#pull:after {
		content:"";
		width: 35px;
		display: inline-block;
		position: relative;
}
}
/*Styles for screen 515px and lower*/
@media only screen and (max-width : 480px) {
    nav
{
		border-bottom: 0;
		width:94%;
        margin-left: auto;
        margin-right: auto;	
		background-color: #A4A4A4;
}
	nav ul {
  		width: 100%;
		display: none;
		height: auto;
	}
	nav a#pull {
		display: block;
		background-color: #B1B1B1;
		position: relative;
		text-align: left;
		width: 80px;
		left: 0px;
	}
	nav a#pull:after {
		content:"";
		display: inline-block;
		position: relative;
	}
}
/*Smartphone*/
@media only screen and (max-width : 320px) {
    nav
{
		border-bottom: 0;
		width:94%;
        margin-left: auto;
        margin-right: auto;	
		background-color: #A4A4A4;
}
	nav ul {
  		width: 100%;
		display: none;
		height: auto;
	}
	nav a#pull {
		display: block;
		background-color: #B1B1B1;
		position: relative;
		text-align: left;
		width: 80px;
		left: 0px;
	}
	nav a#pull:after {
		content:"";
		display: inline-block;
		position: relative;
	}
}