@charset "utf-8";
/* CSS Document */
/*Strip the ul of padding and list styling*/
.top {height:98px;z-index:9999;}
.menus{text-align:center;width:100%;position:absolute;top:55px;z-index:8888;}

/* top layer menu */
.menus ul {

	list-style-type:none;
	margin:0;
	padding:0;
	position: static;
	display: none;	
	z-index:7777;
}

/*Create a horizontal list with spacing*/
.menus ul li {
	
	display:inline-block;
	width: 100%;
	float: left;
	margin-right: 1px;
	/*Create vertical spacing*/
	margin-bottom: 0px;
	border-top: 0px solid #A8CD02;
	border-bottom: 0px solid #A8CD02;
}

/*Style for menu links*/
.menus ul li a {
	display:block;
	width: 100%;
	min-width:140px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #4b545f;
	background: linear-gradient(top, #4f5964 0%, #5f6975 40%);
	background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);
	background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);	
	text-decoration: none;
}

/*Hover state for top level links*/
.menus ul li:hover a {
	color: #fff;
}

/*Style for dropdown links*/
.menus ul li:hover ul a {
	background: #f3f3f3;
	color: #2f3036;
	height: 30px;
	line-height: 30px;
}

/*Hover state for dropdown links*/
.menus ul li:hover ul a:hover {
	background: #000000; 
	color: #fff;
}

/*Hide dropdown links until they are needed*/
.menus ul ul {
	display: none;
	background: #5f6975;	
}

/*Make dropdown links vertical*/
.menus ul ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
.menus ul ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
	color: #757575;
}

/*Display the dropdown on hover*/
.menus ul li a:hover + .hidden0, .hidden0:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	background: #efefef; 
	background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);  
	background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%); 
	background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%); 
	box-shadow: 0px 0px 5px rgba(0,0,0,1.0);
	border-radius: 2px; 	
	color: #19c589;
	font-size:1.5em;
	text-align: center;
	padding: 2px 0;
	display: block;
	height: 40px;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #navli{
    display: block;
}

