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

/* Basic Styles */

.nav {
	height: 40px;
	width: 100%;
	background: #2271b3;
	font-size: 16pt;
	font-family: 'Oswald', sans-serif;
	position: relative;
	border-bottom: 2px solid #cccccc;
}
.nav ul {
	padding: 0;
	margin: 0 auto;
	width: 960px;
	height: 40px;
}
.nav li {
	display: inline;
	float: left;
}
.nav a {
	color: #fff;
	display: inline-block;
	width: 160px;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	text-shadow: 1px 1px 0px #283744;
}
.nav li a {
	border-right: 1px solid #000000;
	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, nav a:active {
	background-color: #000000;
}
.nav a#pull {
	display: none;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media screen and (max-width: 961px) {
	.nav { 
  		height: auto;
		border-bottom: 0;
  	}
  	.nav ul {
  		width: 100%;
  		display: none;
  		height: auto;
  	}
  	.nav li {
  		width: 100%;
  		float: none;
  		position: relative;
		display: block;
  	}
  	.nav li a {
		border-bottom: 1px solid #58181a;
		border-right: 1px solid #000000;
		border-bottom: 1px solid #852427;
	}
  	.nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
  	}
	.nav a#pull {
		display: block;
		background-color: #2271b3;
		width: 100%;
		position: relative;
	}
	.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;
	}
}

/* Mobile Layout: 480px and below. */
@media only screen and (max-width : 480px) {
	.nav {
		border-bottom: 0;
	}
	.nav ul {
		display: none;
		height: auto;
	}
	
	.nav li {
		display: block;
		float: none;
		width: 100%;
	}
	.nav li a {

		border-bottom: 1px solid #000000;
	}
	.nav a#pull {
		display: block;
		background-color: #2271b3;
		width: 100%;
		position: relative;
	}
	.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;
	}
}
