.nav-button { display: none; } /* hide the navigation button by default */


@media only screen and (min-width: 0px) and (max-width:768px) {
	

	/* Navigation Button
	-------------------------------------------------------- */

	.nav-wrapper {
		/*float:left;*/
	}

	.navbar	{
		width:100%;
		display: inline-block;
		float: left;		
	}
	
	.nav-button {
		display: block;
		position: absolute;
		top: 10px;
		margin-left:10px;
		width: 50px;
		height: 28px;
		background: url('../images/menu-icon-large.png'), -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background: url('../images/menu-icon-large.png'), -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background: url('../images/menu-icon-large.png'), -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background: url('../images/menu-icon-large.png'), -o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 21px, 100%;
		cursor: pointer;
		border: 0 none;
		/*border-bottom: 1px solid rgba(255,255,255,.1);*/
		box-shadow: 0 0 4px rgba(0,0,0,.7) inset;
		border-radius: 5px;
		text-indent: -9999px;
		outline:none;
		z-index:3;
	}
	
	.nav-button:hover { 
		background-color: rgba(0,0,0,.1); 
	}
	
	.nav-button.open {
		background: url('../images/close-icon-large.png'), -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background: url('../images/close-icon-large.png'),    -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background: url('../images/close-icon-large.png'),     -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background: url('../images/close-icon-large.png'),      -o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 21px, 100%;
		outline:none;
	}

	/* Navigation Bar
	-------------------------------------------------------- */
	.primary-nav {
		width: 100%;
		float: none;
		background-color: rgba(37, 82, 121, 1); /* change the menu color */
		display: block;
		margin: 0;
		padding: 0;
		overflow: hidden;
		position: relative;
		top: 0px;
		left: 0px;
		clear: both
	}


	ul.primary-nav {
		margin: 0px;
		padding: 0;
	}	
	ul.primary-nav li	{
		padding:0;
	}
	
	.primary-nav li {
		display: none;
		width: 100%;
	}
	
	.primary-nav li a {
		display: block;
		width: 100%;
		padding: 8px;
		line-height: 28px;
		font-weight: normal;
		color: white;
		text-decoration: none;
		border-bottom: 1px solid rgba(0,0,0,.2);
		margin: 0;
	}
	
	ul.primary-nav ul {
	width:100%;
	position:relative; 
	}
	
	ul.primary-nav ul li a:link	{
		text-indent: 10px;	
		border-bottom:1px solid rgba(0,0,0,.2);
	}
	
	ul.primary-nav ul li a {
		padding: 5px 0 5px 0px;
		text-indent: 50px;
		display:block!important;
		line-height: 30px;
	}

	ul.primary-nav ul ul {
		top:auto;
		left:0%;
		padding: 0px 0px;	
	}
	
	.primary-nav li a:hover {
		background-color: rgba(0,0,0,.5);
		border-top-color: transparent;
		}
	
	.primary-nav > li:first-child {
		/*border-top: 1px solid rgba(0,0,0,.2);  */
	}

	/* Toggle the navigation bar open  */

	.primary-nav.open { 
		height: auto; 
	}
	.primary-nav.open li { 
		display: block; 
		width: 100%;
	}

	/* Submenus – optional .parent class indicates dropdowns */

	ul.primary-nav li:hover a { 
		background: rgba(0,0,0,.5);
		color:#fff;
	}
	
	.primary-nav li.menu-item-has-children > a:after {
		content: " ▼";
		color: rgba(0,0,0,.75);
		float: right;
	}
	
	.primary-nav li.menu-item-has-children > a:hover {

	}
	
	.primary-nav li ul a:link {
		border: 0px none;
		padding: 10px 2%;
		font-weight: normal;
	}	
		
	
	.primary-nav li:hover ul {
		border-top: 0 none;
	}

} /* End Mobile Styles */
