/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */
body {
	background-color: #ece8e5;
}
nav {
	height: 46px;
	width: 100%;	
	font-size: 11pt;
	font-family: 'PT Sans', Arial, sans-serif;
	font-weight: bold;
	position: relative;
	border-bottom: 1px solid #04396a; border-top: 1px solid #04396a;
	
	background-color:#04396a; 
	/* Safari 4-5, Chrome 1-9 */ 
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0856a0), to(#064886)); 
	/* Safari 5.1, Chrome 10+ */ 
	background: -webkit-linear-gradient(top, #0856a0, #064886); 
	/* Firefox 3.6+ */ 
	background: -moz-linear-gradient(top, #0856a0, #064886); 
	/* IE 10 */ 
	background: -ms-linear-gradient(top, #0856a0, #064886); 
	/* Opera 11.10+ */ 
	background: -o-linear-gradient(top, #0856a0, #064886);
}
nav ul {
	padding: 0;
	margin: 0 auto;
	width: 980px;
	height: 46px;
}
nav li {
	display: inline; padding:0;
	float: left;
}
nav a {
	color: #fff;
	display: inline-block;
	width: auto; padding:0 20px;
	text-align: center;
	text-decoration: none;
	line-height: 46px; 
	text-shadow: 1px 1px 0px #1b6d81; text-transform:uppercase; border-right:1px solid #04396a;
}
nav li a {
	
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
nav li:last-child a{
	border-right: 0;
}
nav li:hover, nav a:active {
	background-color: #04396a;	
	
}
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 {
  		width: 100%;
  		float: left;
  		position: relative;
		border-bottom: 1px solid #576979;
  	}
  	nav li a {
		
		border-right: 1px solid #576979;
	}
  	nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
  	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 768px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	nav a#pull {
		display: block;
		background-color: #1e7f97;
		width: 100%;
		position: relative;
		box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	}
	nav a#pull:after {
		content:"";
		background: url('../images/nav-icon.png') no-repeat;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top: 10px;
	}
}

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