/* Reset Styles
***********************/
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q demo
blockquote:before, blockquote:after,q:before, q:after {content: ''; content: none;}
table {border-collapse: collapse; border-spacing: 0;}
strong {font-weight: bold;}
em {font-style: italic;}



/* General
***********************/
body {
	background: #474747; font-size: 14px; font-family: Helvetica, sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
	height: auto; color: #ccc;
}

#container {margin: 5% 10% 10% 10%; background: #474747;}

#main { clear: both; }

header {
	margin: 0 0 0 0;
}

header h1 {
	margin: 28px 0 0 0;
	color: #ccc;
	float: left;
	height: 24px;
	padding-top: 2px;
	width: 320px;	
	font-size: 12px;
	font-weight: 100;
}

nav {
	width: 50%;
	padding: 32px 0 24px 0;
	margin-bottom: 12px;
	float: right;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 100;
	border-bottom: 1px solid #333;
}

nav ul {
	display: table;
	width: 100%;
}

nav ul, nav ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav li {
	display: table-cell;
	width: 20%;
	text-align: center;
	padding: 0;
	margin: 0;
}


a:visited {
	color: #ccc;
}

nav a {
	color: #ccc;
	text-decoration: none;
	padding: 24px 20px;
}

nav .here a {
	border-bottom: 1px solid;
}


/* Media */

@media screen and (max-width:960px) {
	header h1 {
		clear: both;
		float: none;
		width: 100%;
		text-align: center;

	}

	/* Nav */
	nav {
		margin: 0 auto;
		clear: both;
		float: none;
		min-width: 50%;
		width: auto;
	}
}

@media screen and (max-width: 480px) {
    nav {
        width: 100%;
        position: relative;
        }

            nav:before {
                font-family: "icons";
                content: "\f0c9"; /* icon - Hamburger here */
				text-indent:-999px;
				background-image:url('../images/get_burgers.png');
				background-repeat: no-repeat;
                display: block;
                width: 2rem;
                font-size: 2rem;
                text-align: left;
                position: absolute;
                top:1rem;
                right:0;
                z-index: 3;
                }

        nav li {
            width: 100%;
            padding: 1rem 0;
            display: none;
            z-index: 1; /* z-index hides default text if active child exists */
            position: relative;
            }

        /* this is where the magical expand occurs, on :hover, .open and specifically: always for active pages */

        nav:hover li,
        nav.open li,
        nav .here {
            display: block;
        }
		nav a {	padding: 5px 5px; }
    }



