/**********************************************************************
 *********** CSS reset (Meyer-tweaked) ***********
 *********************************************************************/
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	background-repeat: no-repeat;
	background-position: 0 0;
	color: inherit;
	line-height: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

/****** END OF CSS RESET *******/

body {
	font-family: 'Helvetica Neue', Helvetica, arial, verdana, sans-serif;
}

body.show-main-nav nav#main,
body.show-main-nav #main-nav-underlay {
	display: block;
}

header {
	width: 100%;
}

header h1 {
	line-height: 48px;
}

header #menu-icon {
	font-size: 30px;
	color: white;
	vertical-align: middle;
}


#main-nav-underlay {
	z-index: 99;
	display: none; /* hide by default */
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.5;
}
nav#main {
	z-index: 100;
	display: none;
	position: absolute;
	top: 50px;
	left: 0;
	max-width: 500px;

	background-color: white;

	border-radius: 0px 0px 10px 0px;
	-moz-border-radius: 0px 0px 10px 0px;
	-webkit-border-radius: 0px 0px 10px 0px;
	border-right: 1px solid white;
	border-bottom: 1px solid white;
}

nav#main ul {
	margin-left: 5px;
}

nav#main li {
	padding: 3px 3px 0 3px;
	margin-bottom: 3px;
	line-height: 1.5em;
}
nav#main li.divider {
	background-color: gray;
	color: white;

	text-align: center;
	font-size: 12px;

}

nav#main ul {
	list-style: none;
}

nav#main ul li.parent span.menu-toggle {
	float: right;
}
nav#main ul li.parent span.menu-toggle:before {
   font-family: FontAwesome;
   content: "\f0aa";
}
nav#main ul li.parent.child-hidden span.menu-toggle:before {
   content: "\f0ab";
}
nav#main ul li {
	height: 1.5em;
	line-height: 1.5em;
	overflow: visible;
}
nav#main ul li.parent {
	height: auto;
}
nav#main ul li.parent.child-hidden {
	overflow: hidden;
	height: 1.5em;
	line-height: 1.5em;
}

nav#main ul li ul {
	background-color: red;
}

main {
	margin-bottom: 1.5em;
}
footer {
	width: 100%;
	overflow: visible;
	height: 1.5em;
	position: fixed;
	bottom: 0;

	background-color: yellow;

}
footer a.cta {
	display: inline-block;
	width: 32%;
	text-align: center;
}
