* {
	-webkit-box-sizing: border-box;
	/* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;
	/* Firefox, other Gecko */
	box-sizing: border-box;
	/* Opera/IE 8+ */
}
nav {
	display: block;
	background: #505050;
	position: relative;
	min-height: 40px;
	font-family:Arial;
	font-size:12px;
	font-weight:bold;
	/*border-radius:10px;*/
	box-shadow: 2px 2px 3px #555;
	-webkit-box-shadow: 2px 2px 3px #555;
	-moz-box-shadow: 2px 2px 3px #555;
}
nav, nav a {
	color: white;
}
nav a {
	display: block;
	padding: 10px;
	text-decoration: none;	
}
nav a:hover {
	background: #93D352/*silver*/;
	text-decoration: none;
}
nav ul {
	padding:0;
	margin: 0;
}
nav ul li {
	float:left;
	display:block;
	position:relative;
	background: ;
	border-right: 1px solid #67993B;
}

nav>ul>li>a { /*top options*/
	padding:12px;
	height:40px;
	background-color:#7AB948;
}
nav>ul>li>p { /*titulo*/
	padding:11px 30px 11px 20px;
	margin: 0;
	font-size:14px;
	font-weight:bold;
	color:white
}
nav>ul>li>a:hover { /*top options*/
	background-color:#93D352;
}


nav>ul>li>ul>li>a { /*sub menu*/
	width:260px;
	background-color:#606060;
	
	/*box-shadow: 2px 2px 5px #555;
	-webkit-box-shadow: 2px 2px 5px #555;
	-moz-box-shadow: 2px 2px 5px #555;*/
	text-align:left;
}
nav>div { /*info*/
	font-size:10px;
	text-align:right;
	padding:7px;
	color:silver;
}
nav ul li ul {
	left:0;
	top:100%;
}

nav ul ul {
	display:none;
}
nav li:hover > ul {
    display:block;
    position:absolute;
    z-index:1000;
	 box-shadow: 2px 2px 5px #555;
	-webkit-box-shadow: 2px 2px 5px #555;
	-moz-box-shadow: 2px 2px 5px #555;
}

/*Hide checkbox and label by default*/
nav > input,
nav > label {
	display: none;
}

nav > label {
	width: 100%;
	float: left;
	padding: 10px;
	padding-right: 0;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size:12pt;
}

/*Media query ----------------------------------------------------------*/
@media (max-width: 720px) {
	div.menu {height:45px;}
	nav {position:fixed;top:0px;left:0;width:100%;}
	nav > label { display: block; }
	nav > ul { 	/*top options*/
		display: none; clear: both; 
		background-color:#7AB948;
		width:100%;
		height:40px;
		position:fixed; left:0;top:40px;
	}
	nav > input:checked + ul { 	display: block; }

	nav>ul>li>p { display:none; } /*titulo*/
	nav>div { display:none; } /*info*/ 

	nav ul li { float:left; display:block; }	
	
	nav li:hover > ul { 
		position:fixed;
		left:0px;
		top:80px;
		background-color:#606060;
	}
	nav>ul>li>ul>li>a { width:720px;padding-left:10px; } /*sub menu*/ 
	

}