/*small screen = default*/
/* --> hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
.topnavcontainer{}
.topnavleft{display:none;}
.topnavright{display:none;}

.topnav{
	display:inline-block;
	float:right;
	overflow:hidden;
	padding-right:20px;
}

/* Style the links inside the navigation bar */
.topnav a, .topnavleft a{
	display:block;
	float:none;
	font-weight:400;
	font-style:normal;
	font-size:100%;
	color:White;
	text-decoration:none;
	text-align:left;
	letter-spacing:1px;
	border-bottom:3px solid transparent;
	padding:8px 0px 7px 5px;
}

.topnav a:hover {
	border-bottom:3px solid #D8720B; 
	/* color:#D8720B; */
}

.topnav a.active{
	border-bottom:3px solid #D8720B; 
	/* color:#D8720B; */
}

/*big screen%/
/* Hide the link that should open and close the topnav on small screens */
@media screen and (min-width:737px) {
/* @media only screen and (min-resolution:165dpi) and (max-resolution:168dpi), only screen and (min-resolution:155dpi) and (max-resolution:160dpi), only screen and (min-resolution:134dpi) and (max-resolution:144dpi), only screen and (min-resolution:120dpi) and (max-resolution:130dpi), only screen and (max-resolution:116dpi) { */
.topnavcontainer{
	display:block;
	margin-left: auto;
	margin-right: auto;
	max-width:1500px;
	width:100%;
	min-height:70px;
	text-align:left;
	position: fixed; /* Set the navbar to fixed position */
	top: 0; /* Position the navbar at the top of the page */
	background-image: url('../Images/BannerCleanTop.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}
.topnavleft{	
	display:inline-block;
	height:70px;
	width:30%;
	padding-left:20px;
	vertical-align:middle;
	text-align:left;
}
.topnav{
	display:inline-block;
	height:70px;
	background-color:transparent;
	overflow:visible;
	vertical-align:top;
	width:30%;
	min-width:400px;
	float:none;
}
.topnavright{
	display:inline-block;
	height:60px;
	width:15%;
	max-width:400px;
	padding-top:8px;
	vertical-align:top;
}

.topnav a, .topnavleft a{
	margin-top:15px;
	float:left;
	margin-right:15px;
	font-size:16px;
	padding:5px 0px 5px 0px;
	border-bottom:none;
}

.topnav a:hover{
	background-color:transparent;
}
.topnav a.active{
	background-color:transparent;
	border-bottom:3px solid #D8720B;
	color:White;
	}

}