
/* Basic Styles */

nav {
	margin-top:0px;
	height: 50px;
	width: 100%;
	background: #000;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	position: relative;
	text-transform:uppercase;
	text-decoration: none;
	float:right;
	margin-bottom:0px;
}
nav ul {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	height: 50px;
}
nav li {
	display: inline;
	float: left;
    
}
nav a {
	color: #fff;
	display: inline-block;
	width: 146px;
	text-align: center;
	text-decoration: none;
	line-height: 50px;
	text-shadow: none;
}
nav li a {
		text-decoration: none;

	
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
		text-decoration: none;
		color:#000;
	background-color: #FFF;
	
}
nav a#pull {
	display: none;
}

@media only screen and (max-width : 1200px) {
    nav a {
	
	width: 110px;

}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 1024px) {
	
    	nav { 
  		height: auto;
        border-bottom: 0;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
      
  	}
  	nav li {
  		width: 50%;
  		float: left;
  		position: relative;
  	}
  	nav li a {
			text-decoration: none;

	
	}
  	nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
  	}
    
   
	
	nav a#pull {
		display: block;
		background-color: #000;
		width: 100%;
		position: relative;
	}

}

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