/*
710px grid system ~ Core CSS.
2 Columns ~ Margin left: 5px ~ Margin right: 5px

Based on the 960.gs grid system - http://960.gs/
by Nathan Smith

Created by the Grid System Generator - v1.01
Learn more ~ http://www.gridsystemgenerator.com/
*/

/* =Containers
--------------------------------------------------------------------------------*/
.container_2
{
	margin-left: auto;
	margin-right: auto;
	width: 710px;
}

/* =Grid >> Global
--------------------------------------------------------------------------------*/
.grid_1, .grid_2 {
	display: inline;
	float: left;
	position:relative;
	margin-left: 5px;
	margin-right: 5px;
}

/* =Grid >> Children (Alpha ~ First, Omega ~ Last)
--------------------------------------------------------------------------------*/
.alpha {margin-left: 0;}
.omega {margin-right: 0;}

/* =Grid >> 2 Columns
--------------------------------------------------------------------------------*/
.container_2 .grid_1 {width: 345px;}
.container_2 .grid_2 {width: 700px;}

/* =Prefix Extra Space >> 2 Columns
--------------------------------------------------------------------------------*/
.container_2 .prefix_1 {padding-left: 355px;}

/* =Suffix Extra Space >> 2 Columns
--------------------------------------------------------------------------------*/
.container_2 .suffix_1 {padding-right: 355px;}

/* `Push Space >> 2 Columns
--------------------------------------------------------------------------------*/
.container_2 .push_1 {left: 355px;}

/* `Pull Space >> 2 Columns
--------------------------------------------------------------------------------*/
.container_2 .pull_1 {left: -355px;}

/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/
/* http://sonspring.com/journal/clearing-floats */
.clear {
	clear: both;
	float: none;
	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;
}
