/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */
.navHolder{
	clear:both;
	overflow:hidden;
	display:block;
	background-color:#004e8c;
}
#nav {
	width:1000px;
	padding:0px 0px;
	position: relative;
	margin:0px auto
}
#nav ul {
	padding: 0;
	margin: 0 auto;
}
#nav li {
	position:relative;
	overflow:hidden;
	display:block;
	float:left;
}
#menu-mainnavigation li:first-child {
	margin-left:0px;
}
#nav a {
	display:block;
	color:#fff;
	font-size:16px;
	text-decoration:none;
	padding:10px 27px 10px 27px;
	text-transform:uppercase;
}
#menu-mainnavigation a.current{
	background-color:#013864;
	color:#ffffff
}
#menu-mainnavigation li a:hover{
	background-color:#065ea4;
	color:#FFFFFF
}
a#pull {
	display: none;
}

/*Styles for screen 600px and lower*/
@media screen and (max-width: 480px) {
	#nav { 
  		height: auto;
		background-color: #005192;
		
  	}

  	#nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}
  	#nav li {
  		width: 100%;
  		float: left;
		margin-left:0px;

  	}
  	#nav a {
	  	text-align: left;
	  	width: 100%;
	  text-indent: 10px;
		border-radius:0px;
		-webkit-border-radius:0px;
		-moz-border-radius:0px;
		position: relative;
		padding:8px 10px 8px 10px;
		border-bottom:1px dashed #4886ac;
		/*border-top:1px solid #286fb3*/
  	}
		#nav a span{
		display:none !important;
	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 480px) {
	#nav {
		border-bottom: 0;
		
	}
	#nav ul {
		display: none;
		height: auto;
	}

	a#pull {
		display: block;
		background-color: #676767;
		width: 100%;
		position: relative;
		color:#ffffff;
		font-weight:700;
		font-size:18px;
		text-decoration:none;
		padding:8px 20px;
		overflow:hidden
	}
	#pull:after {
		content:"";
		background: url('../images/nav-icon.png') no-repeat;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 25px;
		top: 8px;
	}
	.navHolder{
		background-image:none;
		 padding-bottom: 0px;
	}
}

