@charset "utf-8";
/* CSS Document */
.menu {
	max-width:1500px;
	width: 100%;
	margin: 1px auto;
	font-size:1.1em;
	position: absolute; z-index:1000;
	font-weight: normal;
	color:#FFFFFF;
}
ul {
	padding: 0px;
	margin-top:0px;
	list-style-type: none;
	  display: flex;
  justify-content: center;
}
li {
	margin-right: 1px;
	float: left;
	display: inline-block;
		
}
li a {
		background-image: -webkit-linear-gradient(270deg,rgba(122,179,255,1.00) 0%,rgba(33,127,255,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(122,179,255,1.00) 0%,rgba(33,127,255,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(122,179,255,1.00) 0%,rgba(33,127,255,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(122,179,255,1.00) 0%,rgba(33,127,255,1.00) 100%);
	height: 42px;
	text-align: center;
	color:#FFF;
	text-shadow: 0 1px 1px #000000;
	line-height: 45px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	display: block;
	min-width: 140px;
	border-bottom:solid 1px #FFF;

border-radius:4px;padding:0 8px;
}
li:hover a { background:#004C6C; }
li:hover ul a {
	line-height: 40px;
	height: 40px;
}
li:hover ul a:hover {
	background:#006EBE;
	color:#FFF;
}
li ul { display: none; }
li ul li {
	float: none;
	display: block;
}
li ul li a {
	padding: 0px 10px;
	width: auto;
	min-width: 100px;
}
ul li a:hover + .hidden { display: block; }
.hidden:hover { display: block; }
.show-menu {
	background-image: -webkit-linear-gradient(270deg,rgba(122,179,255,1.00) 0%,rgba(33,127,255,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(122,179,255,1.00) 0%,rgba(33,127,255,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(122,179,255,1.00) 0%,rgba(33,127,255,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(122,179,255,1.00) 0%,rgba(33,127,255,1.00) 100%);
	
	padding: 15px 0px;
	text-align: center;
	color:#FFF;
	text-shadow: 0 1px 1px #000000;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	display: none; width:100% ;
	border-radius:4px;
	border-bottom: solid 1px #FFF;
}
input[type=checkbox] {
	display: none;
	-webkit-appearance: none; width:100% ;
}
input[type=checkbox]:checked ~ #menu { display: block;

  }

@media screen and (max-width:760px) {
.menu { width:100%;
}
li:hover a { 

background:#005E93; }
ul {
	display: none;
	position: static;
	
}
li { border-bottom:solid 1pz #fff; }
ul li { width: 100%;
}
li a { width: 100%;
margin-bottom:0;
 }
.show-menu { display: block;
}
}
