@charset "utf-8";
/* CSS Document */

/* HTML5 -------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
header, hgroup, nav, section, article, aside, figure, figcaption, footer {
	display: block;
}

/* Universal ---------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: color .5s ease,
						opacity .5s ease,
						left .5s ease;
	-moz-transition: all .5s ease,
					 opacity .5s ease,
					 left .5s ease;
	-ms-transition: all .5s ease,
					opacity .5s ease,
					left .5s ease;
	-o-transition: all .5s ease,
				   opacity .5s ease,
				   left .5s ease;
	transition: all .5s ease,
				opacity .5s ease,
				left .5s ease;
}

/* Structure ---------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
html {
	background: #000;
}
body {
	margin: 0;
	padding: 0;
	font-size: 62.5%;
}
#container {
	background: #444;
	max-width: 63em;
	margin: 0 auto;
	font: 1.6em/2 Arial, sans-serif;
	color: #9b976b;
	text-shadow: 0 -1px #000;
}
header {
	background: url(http://www.ipedeckingchicago.com/images/bg-header.jpg) repeat-x #000;
	padding: 10px 10px 0 10px;
}
	header:after {
		content: "";
		display: block;
		clear: both;
	}
#main-nav {
	background: #333;
	box-shadow: 0 -3px 15px #000;
	text-align: center;
}
#main-content, aside {
	padding: 2em 1em 0 1em;
}
footer {
	background: #333;
	clear: both;
	text-align: center;
}

/* Headings ----------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
hgroup {
	text-align: center;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	color: #c8aa4e;
	margin: 0;
}
h1 {
	font-size: 3em;
	line-height: 1.333;
}
hgroup h2, h3 {
	font-size: 1.5em;
	line-height: 1.333;
}
h2 {
	font-size: 2em;
	line-height: 1;
}
aside h2 {
	padding: 2em 0 0 0;
	border-top: 1px dashed #9b976b;
}

/* Links -------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
a {
	color: #c8aa4e;
}
.logo {
	margin: 10px 0 0 10px;
}
nav a {
	text-decoration: none;
}
#main-nav a {
	display: inline-block;
	padding: 0 .5em;
}
	#main-nav a:hover {
		background: #222;
	}

/* Paragraphs --------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
p {
	margin: 2em 0;
}
h2 + p, h3 + p, h4 + p, h5 + p, h6 + p {
	margin: 0 0 2em 0;
}

/* Lists -------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
ul, ol {
	margin: 2em 0;
	padding: 0 0 0 1em;
}

/* Tables ------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
table {
	width: 100%;
	margin: 2em 0;
}
td {
	padding: 0 .5em;
}
tr:nth-of-type(odd) td {
	background: #333;
}

/* Images/Video ------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
iframe {
	max-width: 100%;
}
header img {
	width: 33.333%;
}
.contact-info {
	float: right;
}
p img {
	width: 100%;
}
a img {
	border: none;
}

/* Misc. Content ------------------------------------------------------------ */
/* -------------------------------------------------------------------------- */
b, strong {
	font-weight: bold;
	color: #c8aa4e;
}
i, em {
	font-style: italic;
}
i i, em i, i em, em em {
	font-style: normal;
}

@media screen and (min-width: 900px) {
	#main-content, aside {
		padding: 2em 1em 0 1em;
		float: left;
	}
	#main-content {
		width: 66.667%;
		float: left;
	}
	aside {
		background: #222;
		width: 33.333%;
		float: left;
	}
	hgroup {
		text-align: left;
	}
	aside h2:first-of-type {
		padding: 0;
		border-top: none;
	}

	.float-left, .float-right {
		position: relative;
		top: .5em;
	}
	.float-left {
		float: left;
		margin: 0 .5em 0 0;
	}
	.float-right {
		float: right;
		margin: 0 0 0 .5em;
	}
	.float-left + p, .float-right + p {
		margin-top: 0;
	}
}