/*
960px grid system ~ Core CSS.
4 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.02
Learn more ~ http://www.gridsystemgenerator.com/
*/

/* =Containers
--------------------------------------------------------------------------------*/
.container_4
{
	margin-left: auto;
	margin-right: auto;
	width: 960px;
		
	/*background-image: url(img/960_4_5_5.png); background-repeat: repeat-y;*/
	
}



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

.grid_1_feat{
	margin-left: 5px;
	margin-right: 5px;
	width: 230px;
	float: left;
	display: inline;
	}
	

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

/* =Grid >> 4 Columns
--------------------------------------------------------------------------------*/
.container_4 .grid_0 {width: 182px;}
.container_4 .grid_1 {width: 230px;}
.container_4 .grid_2 {width: 470px;}
.container_4 .grid_3 {width: 710px;}
.container_4 .grid_4 {width: 950px;}

/* =Prefix Extra Space >> 4 Columns
--------------------------------------------------------------------------------*/
.container_4 .prefix_1 {padding-left: 240px;}
.container_4 .prefix_2 {padding-left: 480px;}
.container_4 .prefix_3 {padding-left: 720px;}

/* =Suffix Extra Space >> 4 Columns
--------------------------------------------------------------------------------*/
.container_4 .suffix_1 {padding-right: 240px;}
.container_4 .suffix_2 {padding-right: 480px;}
.container_4 .suffix_3 {padding-right: 720px;}

/* `Push Space >> 4 Columns
--------------------------------------------------------------------------------*/
.container_4 .push_1 {left: 240px;}
.container_4 .push_2 {left: 480px;}
.container_4 .push_3 {left: 720px;}

/* `Pull Space >> 4 Columns
--------------------------------------------------------------------------------*/
.container_4 .pull_1 {left: -240px;}
.container_4 .pull_2 {left: -480px;}
.container_4 .pull_3 {left: -720px;}

/* `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;
}