/*Strip the ul of padding and list styling*/
ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: relative; /*change from absolute to relative to allow centering in div*/
}

/*Create a horizontal list with spacing*/
li {
	display:inline-block;
	float: left;
	margin-right: 10px;
	text-align: center;
}

/*Style for menu links*/
li a {
	display:block;
	padding: 0 15px 0 15px; /*add padding for main*/
	height: 30px;
	text-align: center;
	line-height: 30px;
	color: #fff;
	background: #000;
	text-decoration: none;
}
li a:visited { color: #FFF; }

/*Hover state for top level links*/
li:hover a {
	background: #CCC; /* lighter blue #5983B2; */
	color:#000;
}

/*Style for dropdown links*/
li:hover ul a {
	position: relative;
	background: #f3f3f3;
	color: #2f3036;
	height: 20px;
	line-height: 20px;
	padding: 0 15px 0 15px;
	text-align:left;
	border-bottom: 1px solid #5C748B;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
	background: #C7D1DA;
	color: #fff;
}

@media only screen and (max-width: 600px) {
#navzpw ul {
	display: none;
}
}
@media screen and (min-width : 601px){
#navzpw ul {
	display: inline-block;
}
}

/*Make dropdown links vertical*/
li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
li ul li a {
	width: auto;
	min-width: 80px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	text-decoration: none;
	color: #fff;
	background: #000000;
	text-align: left;
	padding: 6px 6px 6px 6px;
	margin: 0 0 3px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}

/*Responsive Styles*/

@media screen and (max-width : 600px){
	/*center menu text*/
	.show-menu {
	text-align: center;
	padding: 2px 0px 0px 0px;
	margin: 0 0 6px 0;
}
	/*Make dropdown links appear inline*/
	ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	ul li, li a {
		width: 100%;
		padding: 0; /*remove padding for mobile*/
	}
	/*center dropdowns*/
	li:hover ul a {
	text-align:center;
}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}
@media only screen and (min-width: 601px) {
.show-menu {
	padding: 3px 0px 0px 0px;
	margin: 0 0 4px 0;
}