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

/* =Grid >> Global
--------------------------------------------------------------------------------*/
.g95, .g190, .g285, .g380, .g475, .g570, .g665, .g760, .g855, .g950 {
	display: inline;
	float: left;
	margin-left: 10px;
}

/* =Grid >> 10 Columns
--------------------------------------------------------------------------------*/
.g95{width:85px;}
.g190{width:180px;}
.g285{width:275px;}
.g380{width:370px;}
.g475{width:465px;}
.g570{width:560px;}
.g665{width:655px;}
.g760{width:750px;}
.g855{width:845px;}
.g950{width:940px;}


/* =Grid >> 10 Columns - no left margin
--------------------------------------------------------------------------------*/
.ml95{margin-left:105px;}
.ml190{margin-left:200px;}
.ml285{margin-left:295px;}
.ml380{margin-left:390px;}
.ml475{margin-left:485px;}
.ml570{margin-left:580px;}
.ml665{margin-left:675px;}
.ml760{margin-left:770px;}
.ml855{margin-left:865px;}
.ml950{margin-left:960px;}


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