/*Strip the ul of padding and list styling*/

.webmenu{background:#80cb0f;padding:5px 8px 0;}
.webmenu ul {
	list-style-type:none;
	margin:0;
	padding:0;
}

/*Create a horizontal list with spacing*/
.webmenu li {
	display:inline-block;
	float: left;
	margin-right:6px;
	
}

/*Style for menu links*/
.webmenu li a {
	display:block;
	min-width:140px;
	height: 38px;
	text-align: center;
	line-height:38px;
	font-family: 'Roboto', sans-serif;
	color: #fff;
	background: #6fb00c;
	padding:0 12px;
	font-weight:bold;
	text-decoration: none;
}
.webmenu li a.active{background:#fff;color:#333;}

/*Style 'show menu' label button and hide it by default*/
.webmenu .show-menu {
	font-family: 'Roboto', sans-serif;
	text-decoration: none;
	color: #fff;
	background: #6fb00c;
	text-align: center;
	padding: 10px 0;
	display: none;
}

/*Hide checkbox*/
.webmenu input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}

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


/*Responsive Styles*/

@media screen and (max-width : 760px){
	.webmenu{background:#80cb0f;padding:0;}
	/*Make dropdown links appear inline*/
	.webmenu ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	.webmenu li {
		margin-bottom: 0px;
	}
	/*Make all menu links full width*/
	.webmenu ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.webmenu .show-menu {
		display:block;
	}
}