nav#topMenu
{
	position: fixed;
	z-index: 200;
	top: 0;
	left: 0;
	right: 0;
	height: 280px;
	background: white;
	box-shadow: 0 0 8px black;
	transition: top 0.4s ease-out;
	-webkit-transition: top 0.4s ease-out;
}

nav#topMenu.closed
{
	top: -280px;
}

nav#topMenu .toggle
{
	position: absolute;
	right: 25px;
	bottom: -40px;
	background: white;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	text-transform: uppercase;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	font-family: "Proxima Nova", sans-serif;
	box-shadow: 0 0 8px black;
}

nav#topMenu .toggle:after
{
	content: '';
	background-color: white;
	width: 200px;
	height: 12px;
	position: absolute;
	right: -8px;
	width: 6em;
	top: -12px;
}

nav#topMenu .column
{
	float: left;
	width: 50%;
	box-sizing: border-box;
	padding: 0 5px;
}

nav#topMenu h2
{
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 0;
}

nav#topMenu ul
{
	margin: 0;
	padding: 0;
	font-size: 80%;
	overflow: auto;
	list-style: none;
}

nav#topMenu ul li
{
	display: block;
	float: left;
	margin: 0;
}

nav#topMenu ul li:after
{
	content: "\00A0\2022\00A0";
	display: inline;
}

nav#topMenu ul li:last-child:after
{
	display: none;
}

nav#topMenu ul li a
{
	color: black;
}

nav#topMenu ul li a:hover
{
	color: #e51937;
}

nav#topMenu .coda
{
	margin-top: 2em;
	font-size: 80%;
}

#topBg
{
	height: 600px;
	overflow: hidden;
	position: fixed;
}

#topBg img
{
	width: 100%;
	height: auto;
}

header > .pager
{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.pager
{
	position: relative;
	height: 40px;
	background: black;
	line-height: 40px;
}

.pager.red
{
	background: #990c24;
	z-index: 11;
}

.pager.yellow
{
	background: #bf9d04;
	box-shadow: 0 0 10px black;
	box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.7);
	z-index: 2;
}

.pager a
{
	color: white;
	position: absolute;
	width: 50%;
	top: 0;
	box-sizing: border-box;
	text-transform: uppercase;
	font-family: "Proxima Nova", sans-serif;
}

.pager a.prev
{
	left: 0;
	padding-left: 10px;
}

.pager a.next
{
	right: 0;
	padding-right: 10px;
	text-align: right;
}

@media screen and (max-width: 600px)
{
	nav#topMenu
	{
		height: 30em;
		padding: 10px;
		box-sizing: border-box;
	}

	nav#topMenu h2
	{
		font-size: 18px;
	}

	nav#topMenu.closed
	{
		top: -30em;
	}

	nav#topMenu .toggle
	{
		right: 10px;
	}

	nav#topMenu ul
	{
		font-size: 85%;
	}

	header > .pager
	{
		position: relative;
		height: 50px;
		line-height: 50px;
	}

	.pager a
	{
		font-size: 11px;
	}
}

@media screen and (max-width: 400px)
{
	nav#topMenu
	{
		height: 27.5em;
	}

	nav#topMenu.closed
	{
		top: -27.5em;
	}

	nav#topMenu h2
	{
		font-size: 16px;
	}

	nav#topMenu .coda
	{
		margin-top: 1em;
	}
}

@media screen and (max-width: 500px)
{
	nav#topMenu ul, nav#topMenu .coda
	{
		font-size: 90%;
	}
}

@media screen and (max-width: 600px) and (orientation: portrait)
{
	/* single column */

	nav#topMenu .column
	{
		float: none;
		width: 100%;
		font-size: 85%;
		padding: 0;
	}
}

@media screen and (max-width: 600px) and (orientation: landscape)
{
	nav#topMenu
	{
		height: 17.5em;
	}

	nav#topMenu.closed
	{
		top: -17.5em;
	}

	nav#topMenu ul, nav#topMenu .coda
	{
		font-size: 75%;
	}
}

