@charset "utf-8";
/* ======================================================== */
/*  1 LEVEL NAVIGATION MENU - NO DROPDOWNS   */
/*  TO BE USED IN ADDITION TO THE MAIN SITE CSS & SLICKNAV.CSS  */
/*   MOBILE FIRST STYLES*/
/* ======================================================== */

/*   SWITCHES FOR MOBILE MENU */

.slicknav_menu {
	display: block;
}
nav ul#menu {
	display: none;
}

/* ======================================================== */
/*   SWITCHES FOR TURNING ON DESKTOP MENU */
/*   min-width value may need to be adjusted based site */
/* ======================================================== */

@media screen and (min-width:850px) {
.slicknav_menu {
	display: none;
}
nav {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}
/* MENU ITEMS CONTAINER */
nav ul#menu {
	width: 100%;
	max-width: 1000px;
	margin: 0px auto;
	padding: 0;
	list-style: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	-o-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	-o-justify-content: space-around;
	justify-content: space-around;
}
/* TOP MENU ITEMS */
nav ul li {
	width: auto;
	text-align: center;
	text-decoration: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	-o-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	align-items: center;
}
/* MENU ITEM BACKGROUND HOVER EFFECT*/
nav ul li:hover {
	color: rgba(0, 0, 0, 0.75);
	background-color: rgba(255,255,255,0.50);
}
/* TOP MENU TEXT */
nav ul li a:link, nav ul li a:visited {
	color: rgba(255,255,255,1.00);
	display: block;
	padding: 10px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.95em;
	font-weight: 600;
}
/* TOP MENU TEXT HOVER*/
nav ul li a:hover {
	text-decoration: none;
	color: rgba(0,0,0,1.00);
}
}
