/*
	960 Grid System ~ Core CSS.   ####### BASED OFF OF 960
	Learn more ~ http://960.gs/

	Licensed under GPL and MIT.
*/

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

.container {
	margin-left: auto;
	margin-right: auto;
	width: 1000px;
}

/* `Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_heading,
.grid_paper_short_col1,
.grid_paper_short_col2,
.grid_map,
.grid_subnav,
.grid_interior_stage,
.grid_interior_stage_short,
.grid_subnav_short,
.grid_paper_tall_content,
.grid_testimonial_col1,
.grid_testimonial_col2 {
	display: inline;
	float: left;
	position: relative;
	/*
	margin-left: 10px;
	margin-right: 10px;
	*/
}


.grid_heading {
	width: 527px;
	margin-left: 10px;
}

.grid_paper_short_col1 {
	width: 473px;
}

.grid_paper_short_col2 {
	width: 488px;
	margin: 0 19px;
}


.grid_map {
	width: 999px;
	height: 418px;
	margin-right: 12px;
	overflow: hidden;
}

.grid_subnav {
	width: 175px;
	height: 377px;
	padding-top: 41px;
}

.grid_interior_stage {
	width: 999px;
	height: 418px;
}

.grid_interior_stage_short {
	width: 999px;
	height: 321px;
}

.grid_subnav_short {
	width: 175px;
	height: 280px;
}

.grid_paper_tall_content {
	width: 544px;
	padding-left: 26px;
	margin-left: 328px;
	margin-right: 101px;
	margin-top: 69px;
}

.grid_testimonial_col1 {
	width: 328px;
}

.grid_testimonial_col2 {
	width: 646px;
	padding-left: 25px;
}
/* `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;
}


