nav {
	z-index: 10000;
	font-size: 16px;
	line-height: 20px;
	display: block;
	min-height: 34px;
	padding-bottom: 1px;
}
nav li  {
	/* Only here because of bullets in body copy */
	list-style-image: none;
	margin-bottom: 0px;
}
nav ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	position: relative;
}
nav ul li {
	position: relative;
	float: left;
}
nav ul li + li {
	background-image: url(assets/nav-hashtag-gold.png);
	background-repeat: no-repeat;
	background-position: 8px 12px;
	padding-left: 24px;
}
nav ul li a {
	text-decoration: none;
	display: block;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
}
nav ul a:link, nav ul a:visited {
	color: #CCC;
}
nav ul a.active, nav ul a:hover {
	color: #bba453;
	text-decoration: none;
}
.toggle {
	display: none;
}
******************* RESPONSIVE CSS {
}
@media (max-width:700px) {
nav {
/* Only the following 3 lines are important for sticky */
	position: -webkit-sticky;
!important;
	position: sticky;
!important;
	top: 0;
!important;
	min-height: 0px;
}
nav ul {
	display: none;
	float: none;
}
nav ul li {
	display: block;
	float: none;
	margin-bottom: 2px;
}
nav ul li + li {
	background-image: none;
	padding-left: 0px;
}
nav ul li a {
	background-image: url(assets/nav-hashtag-white.png);
	background-repeat: no-repeat;
	background-position: 8px 13px;
	padding-left: 22px;
}
nav ul a:link, nav ul a:visited {
	background-color: rgba(0,0,0,.3);
	color: #FFF;
}
nav ul a.active    {
	background-color: #bba453;
	background-image: url(assets/nav-hashtag-white.png);
}
nav ul a:hover {
	background-color: rgba(187,164,83,.7);
	background-image: url(assets/nav-hashtag-white.png);
}
.toggle {
	width: auto;
	text-align: right;
	box-sizing: 100%;
	cursor: pointer;
	color: #bba453;
	padding-top: 9px;
	padding-right: 11px;
	padding-bottom: 10px;
	display: block;
	background-color: #000000;
	margin-bottom: 0px;
	font-size: 20px;
}
.toggle:before {
	content: '\2630';
	padding-right: 6px;
	padding-bottom: 2px;
	color: #FFF;
	font-size: 22px;
}
