/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */
body {
	background-color: #fff;
}
nav {
	height: 40px;
	width: 100%;
	background: #367538;
	font-size: 10pt;
	font-family: 'Montserrat', sans-serif;	
	font-weight: bold;
	position: relative;
	left: 0;
	top: 0;
	z-index: 199999;
}
nav ul {
	padding: 0;
	margin: 0 auto;
	height: 40px;
}
nav li {
	display: inline;
	float: left;
}
nav a, nav li {
	color: #fff;
	display: inline-block;
	/* width: 100px; */
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	text-transform: uppercase;
	cursor: pointer;
}
nav li a {
	/* border-right: 1px solid #576979; */
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	padding: 0 25px;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active, nav li:hover {
	color: #367538;
	 background-color: #fff; 
}

nav a#pull {
	display: none;
}


/*Styles for screen 1196px and higher*/
@media screen and (min-width: 1196px) {

	nav ul { width: 1196px; margin: 0 auto; }

}


/*Styles for screen 1001px to 1195px*/
@media screen and (min-width: 1001px) and (max-width: 1195px) {

	nav ul { float: left; }

}


/*Styles for screen 1000px and lower*/
@media only screen and (max-width : 1000px) {


	nav {
  		height: auto;
		border-bottom: 0;
	}
	nav ul {
 		width: 100%;
		display: none;
		height: auto;
	}
 	nav li {
  		width: 50%;
  		float: left;
  		position: relative;
	  	text-align: left;
		padding: 0;
		border-bottom: 1px solid #fff;
		border-collapse: collapse;
		background: #49984c;
  	}
  	nav li a {
		/* border-bottom: 1px solid #fff; */
		border-right: 1px solid #fff;
	}
  	nav a {
	  	text-align: left;
	  	width: 100%;
		padding: 0;
  	}

  	nav a:hover, nav li a:hover, nav li a:active, nav li:hover {
  		background: #fff;
  		}
	nav a#pull {
		display: block;
		background: #367538;
		width: 100%;
		position: relative;
		padding: 0;
	  	text-indent: 25px;
	}
	nav a#pull:hover { color: #fff; }
	
	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 : 400px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav li a {
		border-bottom: none;
	}

}



@media only print {

	nav { display: none; }

}

