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

nav {
	overflow:hidden;
}
nav ul {
	max-width: 1080px;
	width: 100%;
	margin-left:auto!important;
	margin-right:auto!important;
}
#menu {
	text-align:right;
	margin: 1em 0;
}
#menu li {display:inline-block;}
#menu li a {
	display: block;
	margin: 0 1em;
	color: #FFF;
	font-weight:bold;
	text-decoration: none;
	font-size:1.6rem;
	-moz-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
	-webkit-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
	-ms-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
}
#menu li a:hover {
	color:#00A3D9;
	text-shadow:none;
}
#toggle {display:none;}

@media only screen and (max-width: 767px) {
nav {background-color:#FFF;}
#menu {
	display: none;
	width:100%;
}
#menu li {width: 100%;}
#menu li a {
	border-top:1px solid #DDD;
	text-align:left;
	margin:0;
	padding:0.2em 0.6em;
}
#menu li {background-color: rgba( 254, 254, 254, 0.7 );}
#menu li:last-child {border-bottom:1px solid #FFF;}
#menu li a {
	border-top:1px solid #FFF;
	text-align:left;
	margin:0;
	padding:0.3em 0.6em;
	color:#444;
	text-shadow:none;
}
#toggle {
	display:inline-block;
    position: relative;
	float:right;
	cursor:pointer;
}
#toggle a {
    display: block;
	padding: 0;
	color: #fff;
	text-align: center;
	text-decoration: none;
	width: 50px;
	height: 50px;
}
#toggle:before {
    display: block;
	content: "";
	position: absolute;
	top: 20%;
	right: 1em;
	width: 35px;
	height: 4px;
	background: #DDD;
	cursor: pointer;
}
#toggle a:before, #toggle a:after {
    display: block;
	content: "";
	position: absolute;
	top: 44%;
	right: 1em;
	width: 35px;
	height: 4px;
	background: #DDD;
	cursor: pointer;
}
#toggle a:before {margin-top: 0px;} 
#toggle a:after {margin-top: 12px;}
}