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

header, hgroup, nav, section, article, aside, footer {
	display: block;
}

/* Structure ------------------------------------------------------------ */
/* ---------------------------------------------------------------------- */
html {
	background: #444;
}
body {
	margin: 0;
	padding: 0;
}
#container {
	background: #000;
	width: 960px;
	margin: 0 auto;
	font: 16px/2 Arial, Helvetica, sans-serif;
	color: #888;
	-webkit-box-shadow: 0 0 30px #000;
	-moz-box-shadow: 0 0 30px #000;
	-ms-box-shadow: 0 0 30px #000;
	-o-box-shadow: 0 0 30px #000;
	box-shadow: 0 0 30px #000;
}
header {
	background: url(../images/bg-header.jpg) no-repeat;
	height: 94px;
	padding: 80px 0 0 60px;
}
#sidebar {
	background: url(../images/bg-sidebar.jpg) no-repeat;
	width: 300px;
	height: 786px;
	float: right;
}
	#main-nav {
		width: 135px;
		margin: 140px 0 0 15px;
	}
#main-content {
	background: url(../images/bg-body.jpg) no-repeat top right #000;
	width: 540px;
	min-height: 786px;
	padding: 0 60px 30px 60px;
}
footer {
	text-align: center;
	height: 0;
	font-size: .75em;
}
	#footer-inner {
		position: relative;
		top: 30px;
	}
		#copyright {
			color: #aaa;
			padding: 0 0 30px 0;
		}

/* Headings ------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
h1, h2, h3 {
	color: #fff;
}
h1 {
	margin: 0;
	padding: 60px 0 0 0;
	font-family: Impact, Arial, Helvetica, sans-serif;
	font-weight: normal;
}
h3 {
	font-style: italic;
}

/* Links ---------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
a {
	color: #0cf;
	text-decoration: none;
}
	a:hover {
		color: #3ef;
	}
#logo {
	font: 48px Impact, Arial, Helvetica, sans-serif;
	color: #000;
}
#main-nav a {
	color: #fff;
	font-size: 24px;
	display: block;
}
	#main-nav a:hover {
		border-bottom: 1px solid #fff;
		border-right: 10px solid #fff;
		margin-bottom: -1px;
	}
footer nav a {
	color: #ddd;
}
	footer nav a:hover {
		color: #fff;
	}

/* Paragraphs ----------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
p {
	margin: 2em 0;
}

/* Lists ---------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
ul, ol {
	list-style-position: outside;
	margin: 2em 0;
	padding: 0;
}

/* Images --------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
#phone-number {
	position: relative;
	top: -10px;
}
a img {
	border: none;
}

/* Tables --------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
table {
	width: 100%;
	font-size: .75em;
	line-height: 1.5;
}
	td {
		border: 1px solid #232323;
		padding: 5px;
	}

/* Other ---------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
b, strong {
	color: #fff;
}
s {
	color: #f00;
}

/* Classes -------------------------------------------------------------- */
/* ---------------------------------------------------------------------- */
.float-left {
	float: left;
	margin: 2em 15px 2em 0;
}
.float-right {
	float: right;
	margin: 2em 0 2em 15px;
}

@media screen and (max-width: 830px) {
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
#container {
	width: 100%;
}
header {
	background-position: right;
	width: 100%;
	height: 174px;
}
#sidebar {
	background: #000;
	width: 25%;
}
#main-content {
	float: none;
	width: 75%;
	min-height: 786px;
	padding: 0 60px 30px 60px;
}
img {
	max-width: 100%;
}
}

@media screen and (max-width: 620px) {
html {
	background: #000;
}
header {
	padding: 100px 0 0 1em;
}
#logo {
	font-size: 36px;	
}
#sidebar {
	float: none;
	margin: 0;
	width: 100%;
	height: auto;
}
#main-nav {
	margin: 0;
	width: 100%;
}
#main-nav a {
	float: left;
	width: 50%;
	margin: 0;
	padding: 0 1em;
}
#main-nav a:hover {
	border: none;
	margin: 0;
}
#main-content {
	width: 100%;
	padding: 0 1em;
	clear: both;
}