*
{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

html,
body
{
	margin: 0;
	padding: 0;
	font-family: Raleway, sans-serif;
	color: #000;
	line-height: 24px;
}

#floating-header
{
	display: block;
	position: fixed;
	top: 0;
	width: 100%;
	background-image: url('images/subtleGrunge.jpg');
}

#header-canvas
{
	display: block;
	width: 960px;
	margin: 0 auto;
	padding: 12px 0;
	min-height: 60px;
	overflow: auto;
	font-size: 16px;
}

#header-canvas header
{
	display: inline-block;
	margin: 0 8px 0 0;
	padding: 0;
}

#header-canvas header img
{
	display: inline-block;
	height: 52px;
	margin: -8px 8px -8px 0;
	padding: 0;
	vertical-align: top;
}

#header-canvas header h1
{
	display: inline-block;
	margin: 0;
	padding: 0;
	font-size: 36px;
	line-height: 36px;
	transition: color 1s;
	-webkit-transition: color 1s;
}

#header-canvas header h1:hover
{
	color: #933;
	transition: color 500ms;
	-webkit-transition: color 500ms;
}

#header-canvas header h4
{
	display: inline-block;
	margin: 0 0 0 16px;
	padding: 0;
	font-size: 16px;
	line-height: 36px;
	font-weight: 200;
}

#cta
{
	float: right;
}

.button
{
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #77d42a), color-stop(1, #5cb811) );
	background: -moz-linear-gradient( center top, #77d42a 5%, #5cb811 100% );
	filter:progid: DXImageTransform.Microsoft.gradient(startColorstr='#77d42a', endColorstr='#5cb811');
	background-color: #77d42a;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
	border: 1px solid #268a16;
	display: inline-block;
	color: #306108;
	font-size: 18px;
	font-weight: bold;
	padding: 6px 12px;
	text-decoration: none;
	text-shadow: 2px 2px 2px #aade7c;
}

.button:hover
{
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #5cb811), color-stop(1, #77d42a) );
	background: -moz-linear-gradient( center top, #5cb811 5%, #77d42a 100% );
	filter:progid: DXImageTransform.Microsoft.gradient(startColorstr='#5cb811', endColorstr='#77d42a');
	background-color: #5cb811;
}

#overhang-canvas
{
	position: fixed;
	top: 60px;
	margin: 0;
	padding: 0;
	background-image: url('images/mochaGrunge.jpg');
	background-attachment: fixed;
	width: 100%;
	z-index: -1000;
}

#overhang
{
	margin: 0 auto;
	padding: 116px 0;
	width: 960px;
	height: 360px;
	background-image: url('images/crowd.jpg');
	background-position: center top;
	background-size: cover;
	text-align: center;
	color: #f9f9f9;
	font-weight: bold;
}

#overhang h1,
#overhang h2
{
	margin: 0;
	padding: 8px 0;
	background-color: rgba(51, 51, 51, 0.75);
	line-height: 48px;
}

#overhang h1
{
	font-size: 36px;
}

#overhang h2
{
	font-size: 24px;
}

#canvas
{
	margin: 420px 0 0;
	width: 100%;
	overflow: visible;
	background-image: url('images/subtleGrunge.jpg');
}

#content
{
	margin: 0 auto;
	padding: 12px 0;
	width: 960px;
}

#content dl dt
{
	font-variant: small-caps;
	font-weight: bold;
	color: #C33;
}

#content dl .highlight
{
	font-weight: bolder;
	background-color: rgba(255, 255, 128, 0.5);
}

.columns
{
	margin: 0;
	padding: 0;
	overflow: auto;
	width: 100%;
}

.columns h1
{
	margin: 0;
	padding: 0;
}

.columns .column
{
	display: block;
	float: left;
	margin: 0;
	padding: 12px;
}

.columns .column:first-child
{
	padding-left: 0;
}

.columns .column:last-child
{
	padding-right: 0;
}

.two.columns .column
{
	width: 474px;
}

.three.columns .column
{
	width: 312px;
}

#footer-canvas
{
	width: 100^;
	background-image: url('images/mochaGrunge.jpg');
}

#footer
{
	margin: 0 auto;
	padding: 12px 0;
	overflow: auto;
	font-size: 14px;
	width: 960px;
}

#footer hr
{
	border: 1px solid #999;
	clear: both;
}

#footer h1
{
	margin: 0;
	padding: 0;
	font-size: 16px;
}

#footer h2
{
	display: inline;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

#footer p
{
	margin: 0;
	padding: 0;
}

#footer address
{
	font-style: normal;
}

#footer a:link,
#footer a:visited,
#footer a:active,
#footer a:hover
{
	color: #000;
	border-bottom: none;
	text-decoration: none;
	transition: color 2s;
	-webkit-transition: color 2s;
}

#footer a:hover
{
	border-bottom: 1px solid #000;
}

#footer-navigation, #administrative-navigation
{
	margin: 0;
	padding: 0;
}

#footer-navigation ul, #administrative-navigation ul
{
	margin: 0;
	padding: 0 0 0 12px;
	list-style: none;
}

/* All mobile/small screen */
@media only screen and (max-width: 959px)
{
	#floating-header,
	#overhang-canvas
	{
		position: static;
	}

	#canvas
	{
		margin-top: 0;
	}
}

/* Tablet horizontal */
@media only screen and (min-width: 768px) and (max-width: 959px)
{
	#header-canvas,
	#overhang,
	#content,
	#footer
	{
		width: 768px;
	}

	#overhang
	{
		padding: 92px 0;
	}

	#overhang .part1,
	#overhang .part2
	{
		white-space: nowrap;
	}

	.two.columns .column
	{
		width: 378px;
	}

	.three.columns .column
	{
		width: 248px;
	}
}

/* At most mobile horizontal, tablet vertical */
@media only screen and (max-width: 767px)
{
	#header-canvas header
	{
		display: block;
		text-align: center;
	}

	#cta
	{
		float: none;
		display: block;
		text-align: center;
	}

	.columns
	{
		margin: 0;
		padding: 0;
		width: 100%;
	}

	.two.columns .column,
	.three.columns .column,
	.columns .column
	{
		display: block;
		margin: 0;
		padding: 0;
		width: 100%;
		border-bottom: 2px solid #999;
		padding-bottom: 12px;
		margin-bottom: 12px;
	}

	.columns .column:last-child
	{
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}
}

/* Mobile horizontal, tablet vertical */
@media only screen and (min-width: 480px) and (max-width: 767px)
{
	#header-canvas,
	#overhang,
	#content,
	#footer
	{
		width: 480px;
	}

	#overhang
	{
		padding: 68px 0;
	}
}

/* Mobile vertical, base 320px */
@media only screen and (max-width: 479px)
{
	#header-canvas,
	#overhang,
	#content,
	#footer
	{
		width: 320px;
	}

	#overhang
	{
		padding: 44px 0;
	}
}
