@charset "utf-8";
/* CSS Document */
header{
	display:flex;
	justify-content:center;
	align-items: flex-end;
}
 #nav {
	position: fixed;
	background: #000000;
	z-index: 10;
	padding: 1% 0 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: stretch;
	width:100%;
}

#nav > ul {
  margin:0;
  border: none;
  display: flex;

  justify-content: center;
  position: relative;

  list-style: none;
  padding:10px 0 10px 0;
  padding-left: 1em;

}
#nav > ul img{
	margin-top:-15px;
}
#nav > ul > li{
	padding: 0 1em 1em 1em;
	font-size:1.2em;
	font-family: 'Source Sans Pro', sans-serif;
	align-self: center;
	font-weight: 500;
	
}
#nav > ul > li > a{
	text-decoration:none;
	color: #e2dcc5;
	
	transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
}

#nav > ul > li > a:hover{
	color: rgba(255,206,0,1.00);
}