/*
	960 Grid System ~ Core CSS.
	Learn more ~ http://960.gs/

	Licensed under GPL and MIT.
*/

/* Body
----------------------------------------------------------------------------------------------------*/
body {
	background-color: #816f61;
}

/* `Containers
----------------------------------------------------------------------------------------------------*/

#container {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}

#header {
}

#banner {
	height: 300px;
	background-image: url(../img/bg_banner.jpg);
}

#pitch {
	height: 171px;
	background-image: url(../img/bg_pitch.jpg);
}

#main {
	position: relative;
}

#content {
	margin-left: 70px;
	width: 540px;	
}

#menu {
	position: absolute;
	top: 0px;
	left: 650px;
	width: 200px;
	height: 444px;
	background-image: url(../img/bg_menu.jpg);
}

#footer {
	clear: both;
	margin-top: 50px;
	height: 100px;
	background-image: url(../img/bg_footer.png);
}

#navigation {
	padding-top: 35px;
}

#credits {
	
}

/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}