@charset "UTF-8";
/* CSS Document */

#mainnav {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	clear: both;
}
#mainnav li {
	display: block;
	float: left;
	width: 12.5%;
	margin: 0;
	padding: 0;
}
#mainnav li a {
	display: block;
	font-size: 1.1em;
	font-family: "Hiragino Mincho ProN W1", "Lucida Grande", "Times New Roman", serif;
	font-weight: lighter;
	text-align: center;
	background-color: green;
	color: white;
	text-transform: uppercase;
	padding-top: 5px;
	padding-bottom: 5px;
	text-shadow: 1px 1px #2E3D63;
}
#mainnav li:last-child a {
	border: none;
}
#mainnav a:hover, #mainnav a:active, #mainnav a:focus {
	background-color: purple;
	color: white;
	text-decoration: none;
	text-shadow: 1px 1px #2E3D63;
}
#mainnav a.home {
	background-color: blue;
	text-decoration: none;
	color: white;
}
#mainnav a.home:hover {
	background-color: purple;
	text-decoration: none;
	color: white;
}
#mainnav .contact {
	display: none;
}
#toggle {
	display: none;
}

@media only screen and (max-width: 768px) {
#mainnav li {
	width: 16.66%;
}
}

@media only screen and (max-width: 670px) {
#mainnav li {
	width: 33.33%;
}
}

@media only screen and (max-width: 480px) {
#mainnav {
	display: none;
}
#mainnav li {
	width: 100%;
}
#mainnav .home {
	display: none;
}
#mainnav .contact {
	display: block;
}
#toggle {
	display: block;
	position: relative;
	width: 100%;
	background: #037C57;
}
#toggle a {
	display: block;
	position: relative;
	padding: 16px 0 16px;
	color: rgba(159,254,221,1.00);
	text-align: center;
	text-decoration: none;
}
#toggle:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	background: rgba(159,254,221,1.00);
}
#toggle a:before, #toggle a:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	width: 30px;
	height: 6px;
	background: #037C57;
}
#toggle a:before {
	margin-top: -9px;
}
#toggle a:after {
	margin-top: 3px;
}
}
