#mainMenu {
	float: right;
	width: auto;
	font-size: 100%;
	font-family: "Raleway", "Lucida Grande", Lucida, sans-serif;
}

/*Strip the ul of padding and list styling*/
nav ul {
	list-style-type:none;
	margin:0;
	padding: .6em 0 0;
}

/*Create a horizontal list with spacing*/
nav li {
	display:inline-block;
	float: left;
	margin-right: .06em;
}

/*Style for menu links*/
nav li a {
	display:block;
	height: 1.2em;
	text-align: center;
	color: #ffffff;
	background: #000000;
	text-decoration: none;
	padding-left: .6em;
}

/*Hover state for top level links*/
nav li:hover a {
	color: #dbf5f9;
}

/*Style for dropdown links*/
nav li:hover ul a {
	background: #000000;
	color: #dbf5f9;
	height: 2.5em;
	line-height: 130%;
}

/*Hover state for dropdown links*/
nav li:hover ul a:hover {
	color: #dbf5f9;
}

/*Hide dropdown links until they are needed*/
nav li ul {
	display: none;
}

/*Make dropdown links vertical*/
nav li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
nav li ul li a {
	width: auto;
	min-width: 6.25em;
	padding: 0 1.2em;
}

/*Display the dropdown on hover*/
nav ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	text-decoration: none;
	color: #ffffff;
	background: #000000;
	text-align: center;
	padding: .6em 0;
	display: none;
}

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

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


/*Responsive Styles*/

@media screen and (max-width : 37.4999em){
	/*Make dropdown links appear inline*/
	nav ul {
		position: static;
		display: none;
}
	/*Create vertical spacing*/
	nav li {
		margin-bottom: .06em;
}
	/*Make all menu links full width*/
	nav ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}

/*Gravity Forms*/

#mainMenu .gform_wrapper input [type=checkbox] {
    display: inline-block;
}