
.navbg {
	width: 100%;
	height: 45px;
	margin: 0 auto;
	/* this background color changes top menu color background */
	background-color: #ffffff;
	/* background-color: #F7786D; FF0000  */
	-webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
	border: 0;
	/* border-top: 2px solid #FBC656;
	border-bottom: 2px solid #FBC656;
	this changes the top and bot of menu ffffff is white
	000000 is black */
	/* this section changes border color of the top and bottom of menu at top of page */
	border-top: 2px solid #000000;
	border-bottom: 2px solid #000000;
}


#nav {
	margin: 0 0 0 10px;
	position: relative;
	letter-spacing: 0.04em;
	position: relative;
	z-index: 20;
}

#nav > a {
	display: none;
}

#nav li {
	position: relative;
}

#nav li a {
	display: block;
	/* color: #F8EFD1; changes wording on top menu of header */
	color: #000000;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	text-decoration: none;
}

#nav li a:active {
	/* background-color: #F7020A !important; */
	/* red */
	background-color: #FFFFFF !important;
	/* background-color: #F7020A !important; */
}

#nav li a:hover {
	/* changes when hovering over top menu; changes the background color over item hovering */
	background-color: #000000;
	/* background-color: #F7020A; changes color of text hovering over */
	color: #FFFFFF;
}

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


/* first level */

#nav > ul {
	/* border-left: 2px solid #FBC656;  */
	border-left: 2px solid #000000; 
	border-right: 2px solid #000000;
}

#nav > ul > li {
	float: left;
}

#nav > ul > li > a {
	padding: 5px 10px 5px 10px;
	height: 100%;
	font-family: yanone_kaffeesatzregular, allerregular, sans-serif, Arial, Helvetica;
	font-size: 28px;
	line-height: 30px;
	text-shadow: 1px 1px 2px #FF0000;
}


/* second level */

#nav li ul {
	display: none;
	position: absolute;
	top: 100%;
	z-index: 9;
}

#nav li ul a {
	/* background-color: #4E4E4E; modified 11/24/21 */
	background-color: #FFFFFF;
}

#nav li:hover ul {
	display: block;
	left: 0;
}


#nav li:not( :first-child ):hover ul {
	left: -1px;
	border-top: 2px solid #FFFFFF;
	/* border-top: 2px solid #333333; */
}

#nav li ul a {
	font-size: 18px;
	line-height: 30px;
	/* greyish black */
	border-left: 2px solid #333333;
	border-right: 2px solid #333333;
	border-bottom: 2px solid #333333;
	padding: 2px 10px 0 10px;
	white-space: nowrap;
}

#nav li ul li a:hover, #nav li ul:not( :hover ) li.active a {
	/* background-color: #4E4E4E; */
	background-color: #FFFFFF;
	
}


/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {

	#nav > ul > li > a {
		font-size: 24px;
		line-height: 30px;
	}

}


/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {


}


/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {

	#nav {
		position: relative;
		top: auto;
		left: auto;
	}

	#nav > a {
		width: 45px;
		height: 41px;
		text-align: left;
		text-indent: -9999px;
		background-color: #FF0000;
		position: relative;
	}

	#nav > a:before, #nav > a:after {
		position: absolute;
		border: 2px solid #FFFFFF;
		top: 35%;
		left: 25%;
		right: 25%;
		content: '';
	}

	#nav > a:after {
		top: 65%;
	}

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


	/* first level modified color 11/24/21 */

	#nav > ul {
		background: #FFFFFF;
		width: 50%;
		height: auto;
		display: none;
		position: absolute;
		left: 0;
		right: 0;
	}

	#nav:target > ul {
		display: block;
	}

	#nav > ul > li {
		width: 100%;
		float: none;
	}

	#nav > ul > li > a {
		line-height: 35px;
		text-align: left;
		padding: 0 0.833em;
		/* border-top: 2px solid #FBC656; old peach like color*/
		border-top: 2px solid #FFFFFF;
		border-left: 0px solid #FFFFFF;
		border-right: 0px solid #FFFFFF;
		border-bottom: 0px solid #FFFFFF;
	}

	#nav > ul > li > a {
		border-right: 0px solid #000000 !important;
	}

	#nav > ul > li:last-child > a {
		border-bottom: 2px solid #000000;
	}

	/* second level changed to shadow color 11/24/21 */

	#nav li ul {
		background: #8a795d;
		padding: 1.25em;
		padding-top: 0;
	}

	#nav li ul li:first-child a {
		border-top: 0px solid #000000;
	}

}


/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {


	#nav {
		position: relative;
		top: auto;
		left: auto;
	}

	#nav > a {
		width: 45px;
		height: 41px;
		text-align: left;
		text-indent: -9999px;
		background-color: #8a795d; /*shadow 11/24/21*/
		position: relative;
	}

	#nav > a:before, #nav > a:after {
		position: absolute;
		border: 2px solid #FFFFFF;
		top: 35%;
		left: 25%;
		right: 25%;
		content: '';
	}

	#nav > a:after {
		top: 65%;
	}

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


	/* first level */

	#nav > ul {
		background: #8a795d; /*modified shadow 11/24/21*/
		height: auto;
		display: none;
		position: absolute;
		left: 0;
		right: 0;
	}

	#nav:target > ul {
		display: block;
		width: 50%;
	}

	#nav > ul > li {
		width: 100%;
		float: none;
	}

	#nav > ul > li > a {
		height: auto;
		text-align: left;
		padding: 0 0.833em;
		border-top: 2px solid #FFFFFF;
		border-left: 0px solid #FFFFFF;
		border-right: 0px solid #FFFFFF;
		border-bottom: 0px solid #FFFFFF;
	}

	#nav > ul > li > a {
		border-right: 0px solid #000000 !important;
	}

	#nav > ul > li:last-child > a {
		border-bottom: 2px solid #000000;
	}

	/* second level */

	#nav li ul {
		background: #8a795d; /*modified shadow 11/24/21*/
		padding: 1.25em;
		padding-top: 0;
	}

	#nav li ul li:first-child a {
		border-top: 0px solid #000000;
	}

}


/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {


}
