.menuarea {
	/* critical sizing and position styles */
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	margin-top: 60px;
	/* non-critical appearance styles */
	/*list-style: none;*/
	background: #ffffdd;
}
.menuarea h2 {
	text-align: center;
	font-size: 16px;
	line-height: 30px;
	background-color: #440088;
	background-image: linear-gradient(135deg, #440088 0%, #440088 35%, #440055 100%);
	color: #ffffff;
	border: 2px solid #000000;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 15px;
}
.menutable {
	width: 98%;
	border: none;
	border-spacing: 5px;
	margin-left: auto;
	margin-right: auto;
}
.menurow {

}
.menucell {
	padding: 5px 10px;
	width: 50%;
	vertical-align: top;
	/*border: 1px solid #440088;*/
}
.navtable {
	display: table;
	width: 100%;
	text-align: center;
}
.navrow {
	display: table-row;
}
.navcell {
	display: table-cell;
	width:25%;
}
/* Site Wrapper - Everything that isn't navigation */
.site-wrap {
	/* Critical position and size styles */
	min-height: 100%;
	min-width: 100%;
	background-color: #ffffdd; /* Needs a background or else the nav will show through */
	position: relative;
	top: 0;
	bottom: 100%;
	padding-top: 10px;
	left: 0;
	z-index: 1;
	/* non-critical apperance styles */
	/*padding: 4em; /*This put a border around everything*/
	/*background-image: linear-gradient(135deg, rgb(254,255,255) 0%,rgb(221,241,249) 35%,rgb(160,216,239) 100%);
	/*background-size: 200%;*/
}
/* Nav Trigger */
.nav-trigger {
	/* critical styles - hide the checkbox input */
	position: absolute;
	clip: rect(0, 0, 0, 0);
}
label[for="nav-trigger"] {
	/* critical positioning styles */
	position: fixed;
	left: 5px;
	top: 65px;
	z-index: 2;
	/* non-critical apperance styles */
	color: #ffffff;
	background-color: #440088;
	font-size: 15px;
	font-weight: bold;
	line-height: 15px;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	border: 2px solid #ffffff;
	cursor: pointer;
	padding: 5px;
	border-radius: 15px;
/*	height: 30px;
	width: 30px;
	cursor: pointer;
/*	color: #ffffff;
	background-color: #000000;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='30px' height='30px' viewBox='0 0 30 30' enable-background='new 0 0 30 30' xml:space='preserve'><rect width='30' height='6'/><rect y='24' width='30' height='6'/><rect y='12' width='30' height='6'/></svg>");
	background-size: contain;*/
}
/* Make the Magic Happen */
.nav-trigger + label, .site-wrap {
	transition: left 0.5s;
}
.nav-trigger:checked + label {
	left: 50%;
}
.nav-trigger:checked ~ .site-wrap {
	left: 50%;
	width: 70% !important;
	min-width: 70% !important;
	/*box-shadow: 0 0 5px 5px rgba(0,0,0,0.5);*/
}
body {
	/* Without this, the body has excess horizontal scroll when the menu is open */
	overflow-x: hidden;
}
/* Additional non-critical styles */
/*code {
	padding: 2px;
	background: #ddd;
}
/* Micro reset */
*,*:before,*:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html, body {
	height: 100%;
	width: 100%;
}