
/* Basic Styles */

	nav {
 		height: 40px;  
		width: 100%;	
		background-color: none;  /* Overall Nav Banner Colour */	
 	/*	font-size: 9pt;   */	
 	/*	font-weight: bold;   */
		position: relative;
	
		padding: 80px 0 0 0;
		
	}

	nav ul {
		padding: 0;
		/* margin: 0 auto;  */
		float: right;
		width: 500px;
		height: 40px;
		background-color:#151515; /* Nav Sections Colour */	
		border-top: 1px solid #252525;  
		border-right: 1px solid #252525;  
		border-left: 1px solid #252525;  
		border-top-left-radius: 6px;
		-moz-border-radius-topleft: 6px;
	
		border-top-right-radius: 6px;
		-moz-border-radius-topright: 6px;
		
	}

	nav li {
		display: inline;
		float: left;
	}

	nav a {
		font-family: Helvetica, Arial, sans-serif;
		font-size: 93%;
		color: #eee;
		display: inline-block;
		width: 83px;
		text-align: center;
		text-decoration: none;
		line-height: 40px;  /* Height of Nav Bar */
 	/*	text-shadow: 1px 1px 0px #283744; */
		cursor:pointer;
	}

 	/*	Nav Sections Borders Between

	nav li a {
		border-right: 1px solid #bababa;
		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 {
		color: #eee;
		background-color: #252525;
	}

	nav a#pull {
		display: none;
	}


	/*Styles for screen 700px and lower*/
@media screen and (max-width: 700px) {

	nav ul {
		width: 420px;
	}

	nav a {
		font-size: 85%;
		width: 68px;
	}
}

/*Styles for screen 600px and lower*/
@media screen and (max-width: 620px) {

	div.nav-restricted-width {
		width: 100%;
		padding: 0 ;
	}
	nav { 
  		height: auto;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  		padding: 0;
		margin: 0 auto;
		float: none;

  	}
  	nav li {
  		width: 50%;
  		float: left;
  		position: relative;
  	}
  	nav li a {
		border-bottom: 1px solid #bababa;
		border-right: 1px solid #bababa;
	}

	nav li:last-child a {
		border-right: 0;
		
	}

  	nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
  	}

  	nav a#pull {
		display: none;
	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 500px) {
	nav {
		border-bottom: 0;
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
		padding: 0;
		margin: 0 auto;
		float: none;

	}

	nav li {
  		width: 100%;
  		
  	}
	nav a#pull {
		display: block;
		background-color: #222;
		width: 100%;
		position: relative;
	}
	nav a#pull:after {
		content:"";
		background: url('img/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 : 320px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav li a {
		border-bottom: 1px solid #151515;
	}
}