nav{
	display: block;
	transition: all 1s ease;
	font-family: 'Oswald', sans-serif;
}

/* Main Menu */
.mainmenu{
	display: inline-block;
	cursor:pointer;
	outline:none;
	margin: -1px;
}
.mainmenu > a{
	text-align:left;
	color:#FFF;
	font-size: 14px;
	text-transform: uppercase;
	text-shadow:1px 1px 1px #000;

}
.mainmenu_big > a,
.mainmenu_small > a{
	padding:52px 20px;
	display:block;
	box-shadow: -3px 0px 10px #333;
	min-width:100px;
	text-align:center;
	margin-right:-20px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;

	}
.mainmenu_small > a{
	padding:12px 20px;
	}

.mainmenu a:hover{
	background-color: #ff8a73;
	color: #FFF;
	margin-right:0px;
}


/*Special Childrens Colouring*/
.a{background-color: #00aeef;}
.b{background-color: #ec008c;}
.c{background-color: #fff200;}
.d{background-color: #231f20;}
.e{background-color: #6dcff6;}

/* Sub Menu */
.submenu{
	opacity:0;
	position: absolute;
	visibility:hidden;
	transition: all 0.2s ease;
	z-index: 99999;
	background-image: url(arrow.png), url(bg.png) ;
	background-repeat: no-repeat, repeat;
	background-position: 40px top;
	box-shadow: 0px 0px 3px #CCC;
	padding: 20px 20px 20px 10px;
	text-align:left;
	max-height:250px;
	width:auto;
	overflow:auto;
	white-space:nowrap;
}

.submenu a{
	display: block; /*change to inline-block for multi column*/
	border-radius:0px;
	padding: 5px 10px;
	font-size:80%;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
	box-sizing: border-box;
	min-width:200px;
	text-transform: uppercase;
}
.submenu a:last-of-type{
	border-bottom-width: 0px;
}
/*on rollover */
.mainmenu:focus .submenu{
	opacity:1;
	visibility:visible;
}








#toggle, #toggle + label{
	display:none;
	vertical-align:middle;
	cursor:pointer;
	text-align:right;
}

@media only screen and (max-width: 780px) {

#toggle + label{
	display:table-cell;
	float:right;
	margin-right:25px;
}

nav{
	position: fixed;
	top: 0px;
	left: -1800px;
	height:100vh;
	width:55vw;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
	background-color:#FFF;
	border-right-width: 3px;
	border-right-style: solid;
	border-right-color: #48a7f2;	
	overflow:hidden;
}
#toggle:checked ~ nav {
	left: 0px;
  
}
.mainmenu{
	display: block;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #ff8a73;
}
.mainmenu a{
	display:block;

	text-align:left;
}
.mainmenu:focus .submenu{
	position:static;
}
}

