div.navi_container {
	height:				15px;
}

/*Strip the ul of padding and list styling*/
ul {
	list-style-type:	none;
	margin:				0;
	padding:			0;
	position:			absolute;
	width:				100%;
}

/*Create a horizontal list with spacing*/
li {
	display:			inline-block;
	margin-left:		auto;
    margin-right:		auto;
}

li.navi_inactive {
	color:				lightgrey;
	font-family:		'Comfortaa', Helvetica, Arial, sans-serif;
	font-size:			12pt;
}

/*Style for menu links*/
li a {
	display:			block;
	height:				50px;
	font-family:		'Comfortaa', Helvetica, Arial, sans-serif; 
	font-size:			12pt;
	color: 				#666;
	letter-spacing:		0.5px;
	text-align:			center;
	text-decoration:	none;
}

/*Prevent text wrapping*/
li ul li a {
	width:				auto;
	min-width:			100px;
	padding:			0 20px;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	color: 				#fff;
	background: 		darkgrey;
	text-align: 		center;
	padding:			17px 0px 17px 0px;
	display:			none;
	width:				60px;
	border-radius:		5px;
}

/*Hide checkbox*/
input[type=checkbox]{
    display:			none;
}

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


@media screen and (max-width : 630px){
	
	/*Hover state for top level links*/
	li:hover a {
		background: 	#2980DE;
	}
	
	/*Make dropdown links appear inline*/
	ul {
		position:		static;
		display:		none;
	}
	
	/*Create vertical spacing*/
	li {
		margin-bottom:	0px;
	}
	
	/*Make all menu links full width*/
	ul li, li a {
		color:			black;
		width:			100%;
		background: 	#CCC;
		line-height:	50px;
		border-top:		2px solid white;
		opacity:		0.95;
	}
	
	/*Display 'show menu' link*/
	.show-menu {
		display:		block;
	}
	
	li.navi_inactive {
		display:		none;
	}
	
	li.navi_divider {
		display:none;
	}
	
	div.navi_container {
		height:			100%;
	}
}