@charset "UTF-8";
/* CSS Document */
#menu-icon {
	display: hidden;
	width: 60px;
	height: 60px;
	background-image: url(../images/home/menu-icon.png);
	background-position: center;
	background-size:100%;
}
a:hover#menu-icon {
	border-radius: 4px 4px 0 0;
}
nav {
	z-index: 999999;
	width: 100%;
	display: table;
	table-layout: fixed;
	position: fixed;
	top:0;
	background:white;
	padding-bottom: 0px;
	
}
nav ul {
	list-style: none;
	display: table-row;
	font-size: 1.5em;
	text-transform: uppercase;
	margin: 0px auto;
	padding: 0px;
}
nav ul li, .menuItem, .menuLogo{
	text-align: center;
	display: table-cell;
	padding:0;
	vertical-align: middle;
}
nav ul li a {
	text-decoration: none;
	vertical-align: middle;
	padding:10px;
}

nav ul a {
	display: block;	/* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	color: rgba(153,153,153,1);
}
nav ul a:link, a:visited    { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #7399A4;
	text-decoration: none;
}
nav ul li a:hover, ul a:active, ul a:focus {
	color: #fff;
	border-top:1px solid #7399A4;
	background-color:#7399A4;
	text-decoration: none;
	-webkit-transition: all ease-in-out;
	-moz-transition: all ease-in-out;
	-ms-transition: all ease-in-out;
	-o-transition: all ease-in-out;
	transition: all ease-in-out;
}
nav ul a {
	zoom: 1;
}  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */

.current, .current:hover {
	text-align: center;
	color: #7399A4;
	background-color:#fff;
	border-top:1px solid #7399A4;
	-ms-transition: all;
	-o-transition: all;
}
.topnavIMAGE{
	vertical-align: middle;
	opacity: .6;
}
.topnavIMAGE:hover{
	background-color: #fff;
	border: none;
	opacity: 1;
	float: none;
}
@media (max-width : 640px) {
	#menu-icon {
	display:inline-block;
}
	#menu-icon{
		
	}
nav{
	width: 100vw;
	position: fixed;
	left: 0px;
	margin-left: 0px;
	padding-bottom: 13px;
}
nav ul, nav:active ul {
	display: none;
	position: absolute;
	padding: 0 20px 20px 0;
	background-color: rgba(255,255,255,1);
	right: 0px;
	top: 70px;
	width: 100%;
}
nav .current{
	width:138px;
	text-align: left;
	padding: 10px;
	margin:0px 0 0 30px;
	border:1px solid #7399A4;
	}
nav .current:hover{
	text-align: left;
	}
nav li a{
	text-align: left;
	margin-left: 30px;
	padding-right: 20px;
	}
nav li {
	float: left;
	clear: both;
	width: 160px;
	height: 40px;
	font-size: 1.2em;
	line-height: 1.5em;
}
nav ul li {
	text-align: left;
	padding: 0 0 10px 20px;
	height:45px;
	width: 190px;
}
nav .menuItem{
		margin:0;
	}
nav:hover ul {
	display: block;	
	z-index: 9999999;
}
	.topnavIMAGE{
		display: none;
	}
	nav .menuLogo{
		display: none;
	}
}