/*
800px grid system ~ Core CSS.
9 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
--------------------------------------------------------------------------------*/
.g88, .g176, .g264, .g352, .g440, .g528, .g616, .g704, .g792 {
	display: inline;
	float: left;
	margin-left: 8px;
}

/* =Grid >> 9 Columns
--------------------------------------------------------------------------------*/

.g88{width:80px;}
.g176{width:168px;}
.g264{width:256px;}
.g352{width:344px;}
.g440{width:432px;}
.g528{width:520px;}
.g616{width:608px;}
.g704{width:696px;}
.g792{width:784px;}


/* =Grid >> 9 Columns - no left margin
--------------------------------------------------------------------------------*/
.ml88{margin-left:96px;}
.ml176{margin-left:184px;}
.ml264{margin-left:272px;}
.ml352{margin-left:360px;}
.ml440{margin-left:448px;}
.ml528{margin-left:536px;}
.ml616{margin-left:624px;}
.ml704{margin-left:712px;}
.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;
}
