/*
800px grid system ~ Core CSS.
6 columns ~ margin: 8px

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: 800px;
}

/* =Grid >> Global
--------------------------------------------------------------------------------*/
.g132, .g264, .g396, .g528, .g660, .g792 {
	display: inline;
	float: left;
	margin-left: 8px;
}

/* =Grid >> 6 Columns
--------------------------------------------------------------------------------*/
.g132{width:124px;}
.g264{width:256px;}
.g396{width:388px;}
.g528{width:520px;}
.g660{width:652px;}
.g792{width:784px;}


/* =Grid >> 6 Columns - no left margin
--------------------------------------------------------------------------------*/
.ml132{margin-left:140px;}
.ml264{margin-left:272px;}
.ml396{margin-left:404px;}
.ml528{margin-left:536px;}
.ml660{margin-left:668px;}
.ml792{margin-left:800px;}


.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;
}
