/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */
body {
	background: #999797; /* #ece8e5; */
}
nav {
	height: 40px;
	width: 100%;
	background: #fff;
	font-size: 0.8em;
	font-family: 'PT Sans', Arial, sans-serif;
	font-weight: bold;
	position: relative;
	border-bottom: 0px solid #999;
}
nav ul {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	height: 40px;
}
nav li {
	display: inline;
	float: left;
    border-right: 1px solid #999;
}
nav a {
	color: #000;
	display: inline-block;
	width: 110px;   /* 2023 was 130 */
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	/* text-shadow: 1px 1px 0px #999; */
}
nav li a {
	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: #999797  /* #E6E6E6; */
}
nav a#pull {
	display: none;
}



/*Styles for screen 600px and lower*/

@media screen and (max-width: 768px) {
	nav { 
  		height: auto;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}

  	nav a {
	  	width: 100%;
	  	text-indent: 0.4em;
		padding: 0 0.6em 0 0.6em;
  	}
	
}


@media only screen and (max-width : 480px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	
	nav a {
	  	text-align: left;
	}
	
	nav a#pull {
		display: block;
		background: #fff;
		width: 90%;
		position: relative;
	}
	nav a#pull:after {
		content:"";
		background: url('nav-icon.png') no-repeat;
		width: 60px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top: 10px;
	}

	nav li {
		display: block;
		float: left;
		width: 50%;
		border-right: 0px solid #999;
	}
	nav li a {
		border-bottom: 1px solid # 666;
		border-right: 0px solid #666;
	}
	
	
	
}

