@charset "utf-8";
/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}
nav {
	width: 100%;
	background: #05173e;
	font-size: 11pt;
	position: relative;
}
nav ul {
	display:flex;
	justify-content: space-between;
	padding: 0;
	margin: 0 auto;
	width: 1200px;
}
nav li {
}
nav a {
	display:block;
	padding:1em 2em;
	color: #fff;
	width: auto;
	text-align: center;
	text-decoration: none;
}
nav li a:hover {
	text-decoration: none;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	background-color: #112a56;
}
nav a .current {
	border-bottom:2px solid #8fc6e9;
}
nav a#pull {
	display: none;
}

/*Styles for screen 600px and lower*/
@media screen and (max-width: 600px) {
	nav { 
  		height: auto;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}
  	nav li {
  		float: left;
  		position: relative;
  		width: calc(50% - 1px);
  	}
  	nav li:nth-child(odd) {
  		border-right:1px solid #192e54;
  		border-bottom:1px solid #192e54;
  	}
  	nav li:nth-child(even) {
  		border-right:1px solid #05173e;
  		border-bottom:1px solid #192e54;
  	}
  	nav li:nth-child(7) {
  		width: 100%;
  		border-right:0;
  		border-bottom:0;
  	}
  	nav li a {
  		padding:1em 0;
  		text-align:center;
	}
  	nav a {
	  	text-align: left;
	  	width: 100%;
  	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 480px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	nav a {
		padding:1em 0;
	}
	nav a#pull {
		display: block;
		padding:1em 0;
		background-color: #003475;
		width: 100%;
		position: relative;
		text-indent:2em;
	}
	nav a#pull::after {
		content:"\f0c9";
		font-family: "Font Awesome 5 Free";
		font-size: 20px;
		width: 30px;
		height: 30px;
		display: block;
		position: absolute;
		right: 35px;
		top: 10px;
		bottom:0;
	}
}

/*Smartphone*/
@media only screen and (max-width : 320px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav li a {
		border-bottom: 1px solid #576979;
	}
}
