/*
970px grid system ~ Core CSS.
4 columns ~ margin: 10px

Based on the golden grid system - http://code.google.com/p/the-golden-grid/
by Vladimir Carrer

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

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

/* =Grid >> Global
--------------------------------------------------------------------------------*/
.g240, .g480, .g720, .g960 {
	display: inline;
	float: left;
	margin-left: 10px;
}

/* =Grid >> 4 Columns
--------------------------------------------------------------------------------*/
.g240{width:230px;}
.g480{width:470px;}
.g720{width:710px;}
.g960{width:950px;}


/* =Grid >> 4 Columns - no left margin
--------------------------------------------------------------------------------*/
.ml240{margin-left:250px;}
.ml480{margin-left:490px;}
.ml720{margin-left:730px;}
.ml960{margin-left:970px;}


.inside{margin-left:0;}
/* `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;
}

