@charset "utf-8";
/* Basic Styles */
nav {
	min-height: 50px;
	width: 100%;
	font-size: 15px;
	font-weight: normal;
	position: relative;
	z-index: 99;
	padding: 0;
	margin: 0;
	background-color: #051f61;
}

nav ul {
	padding: 0;
	margin: 0 auto;
	width: auto;
	height: 50px;
	text-align: center;
}
nav li {
	display: inline;
	float: none;
}
nav a {
	color: #fff !important;
	display: inline-block;
	width: auto;
	text-align: center;
	text-decoration: none !important;
	line-height: 50px;
	padding-left: 25px; 
	padding-right: 25px; 
}
nav li a {
	/* border-right: 1px solid #576979;
	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 {
	background-color: #828fb0;
}
nav a:active, nav a.selected {
	background-color: #828fb0;
}

nav a#pull {
	display: none;
}

/*Styles for screen 900px and lower*/
@media only screen and (max-width : 800px) {
	nav {
		border-bottom: 0;
	}
	nav a {
		width: 100%;
		padding-left: 0; 
		padding-right: 0;
		line-height: 40px;
	}
	nav ul {
		display: none;
		height: auto;
	}
	nav a#pull {
		display: block;
		background: #051f61;
		position: relative;
		padding-top: 8px;
	}
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav li a {
		border-bottom: 1px solid #828fb0;
	}
}