nav{
	display: block;
	transition: all 1s ease;
	font-family: 'Fjalla One', sans-serif;
}
divorce{
	display: inline-block;
	font-weight: normal;
	color: #35424d;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #ccc;
	height:35px;
	vertical-align:middle;
	}


/* Main Menu */
.mainmenu{
	display: inline-block;
	cursor:pointer;
	outline:none;
	margin: -1px;
}

.mainmenu > a{
	text-align:left;
	color:#35424d;
	font-size: 17px;
	text-transform: uppercase;
	font-weight: lighter;
	border-radius:7px;
	padding:20px 15px;	
}
.mainmenu:hover > a{
	color:#FFF;
	background-color:#007704;
}



/* Sub Menu */
.submenu{
	opacity:0;
	position: absolute;
	visibility:hidden;
	transition: all 0.2s ease;
	z-index: 99999;
	background-image: url(arrow.png);
	background-repeat: no-repeat;
	background-position: 40px top;
	box-shadow: 0px 0px 0px #CCC;
	margin-top:10px;
	padding: 10px 15px;
	text-align:left;
	max-height:250px;
	overflow:auto;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#007501+0,13e700+100 */
background: rgb(0,117,1); /* Old browsers */
background: -moz-linear-gradient(top, rgba(0,117,1,1) 0%, rgba(19,231,0,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(0,117,1,1) 0%,rgba(19,231,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(0,117,1,1) 0%,rgba(19,231,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007501', endColorstr='#13e700',GradientType=0 ); /* IE6-9 */
}

.submenu a{
	font-family: 'Roboto', sans-serif;
	display: block; /*change to inline-block for multi column*/
	border-radius:0px;
	padding: 10px 10px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #9CC;
	color:#FFF;

	text-transform: uppercase;
}
.submenu a:hover {
	color: #9F3;
}
.submenu a:last-of-type{
	border-bottom-width: 0px;
}
/*on rollover */
.mainmenu:hover .submenu,
.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: 740px) {
divorce{
	display: none;
	}

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

nav{
	position: fixed;
	top: 0px;
	left: -1800px;
	height:100vh;
	width:70vw;
	-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;
	padding-top:25px;
	border-right-width: 3px;
	border-right-style: solid;
	border-right-color: #05175b;	
}
#toggle:checked ~ nav {
	left: 0px;
  
}
.mainmenu{
	display: block;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #05175b;
}
.mainmenu a{
	display:block;
	padding:10px 25px;
	border-radius:0px;
}
.mainmenu:focus .submenu{
	position:static;
}
.submenu{
	margin-top:0px;
}
.submenu a{
	padding: 10px 10px;
}
}

