.topNav {
	width: 100%;
	height: 50px;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #845A4A;
	color: #F4EFE2;
	font-size: 16px;
	z-index: 1;
}

#topNav_logo {
	float: left;
	height: 40px;
	margin: 0 20px;
	position: fixed;
	top: 5px;
	left: 0;
	z-index: 2;
}

.topNav_mainLinks {
	float: right;
}

.topNav a {
	display: inline-block;
	height: 100%;
	margin: 0 10px;
	padding: 0 20px;
	line-height: 50px;
	vertical-align: middle;
	color: #F4EFE2;
  text-decoration: none;
}

#topNav_3bars {
	display: none;
	padding: 10px;
}


/* Change color of dropdown links on hover */
.topNav a:hover {
	background-color: #F4EFE2;
	color: #845A4A;
	cursor: pointer;
}

/* When the screen is less than 700 pixels wide, hide all links. Show the link that should open and close the topnav (.icon) */
@media screen and (max-width: 700px) {
  .topNav a {
		display: none;
	}
	
  #topNav_3bars {
    display: block;
		position: absolute;
		top: 0;
		right: 0;
  }
	
  .topNav.responsive a {
    display: block;
		margin: 0;
    text-align: center;
		background-color: #845A4A;
  }
	
	.topNav.responsive a:hover {
		background-color: #F4EFE2;
	}
	
	.topNav_mainLinks {
		width: 100%;
		margin-top: 50px;
	}
}