/* Nav Style */


#nav_bar {
	background-repeat: repeat-x;
	margin-top: 3px;
	margin-bottom: 22px;
	background: #1d4b73;
}


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

/* Basic Styles */
nav { /* some stuff here is messing it up */
	height: 40px;
	width: 100%;
	font-family: 'PT Sans', Arial, sans-serif;
	z-index: 100;
	margin-left: auto; /* helps center it */
	margin-right: auto; /* helps center it */
}
nav ul {
	xxbackground: #FC3; /* use to see what's going on, hide when done - the background of regular nav */
	padding: 0;
	margin: 0 auto;
	xxwidth: 95%;
	width: 1300px; /* space out and make nav bar wider - make this match up with nav a paddings l&r have to play with it - some of right might get cut off when making it smaller - or make media queary match it - then fix the bar sticking out on the mobile version - it's nav width - and the nav width media queiry above it - smaller seems to center it */
	height: 40px;
}
nav li {
	display: inline;
	float: left;
}
nav a {
	color: #FFF; /* nav text color */
	display: inline-block;
	width: 100%; /* width use persentage to space out */
	xxwidth: 100px; /* original width don't use it */
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	padding-right: 1em; /* for width to space out */
	padding-left: 1em; /* for width to space out */
	font-family: 'open_sanslight', Arial, Helvetica;
}
nav li a {
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	font-size: 14px; /* main nav font size */
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	color: #6b2138; /* nav text color rollover */
	background-color: #abbdbb; /* nav bar color rollover - wouldn't use this without a background strip */
}
nav a#pull {
	display: none;
}





/*Styles for screen 1300px and lower*/
@media only screen and (max-width : 1300px) {
	nav {
		height: auto;
		border-bottom: 0;
		width: 100%; /* was 90% */
		background: #abbdbb; /* nav bar color - dropdown strip*/
		xxfont-size: 6pt;
	}
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav ul {
		width: 100%;
		display: none;
		height: auto;
	}
	nav a {
		font-size: 12px;
		xxtext-align: left;
	  	xxwidth: 100%;
	  	xxtext-indent: 25px;
	}
	nav a#pull {
		display: block;
		background-color: #1d4b73; /* smallest version bg color - main strip */
		color: #FFF; /*menu text color*/
		width: 100%;
		position: relative;
		font-size: 14px; /*menu text size*/
		font-weight: bold; /*menu text weight*/
	}
	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;
	}
	nav li a {
		border-right: none;
		border-bottom: 1px solid #9baeac;
		font-size: 11pt; /* responsive dropdown nav font size */
		color: #6b2138; /* responsive dropdown nav font color */
	}
	nav a:hover, nav a:active {
	color: #FFF; /* responsive nav text color rollover */
	background-color: #1d4b73; /* responsive nav bar color rollover */
}


}

