/*
760px grid system ~ Core CSS.
5 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: 760px;
}

/* =Grid >> Global
--------------------------------------------------------------------------------*/
.g150, .g300, .g450, .g600, .g750 {
	display: inline;
	float: left;
	margin-left: 10px;
}

/* =Grid >> 5 Columns
--------------------------------------------------------------------------------*/
.g150{width:140px;}
.g300{width:290px;}
.g450{width:440px;}
.g600{width:590px;}
.g750{width:740px;}


/* =Grid >> 5 Columns - no left margin
--------------------------------------------------------------------------------*/
.ml150{margin-left:160px;}
.ml300{margin-left:310px;}
.ml450{margin-left:460px;}
.ml600{margin-left:610px;}
.ml750{margin-left:760px;}


.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;
}
