/*
1002px grid system ~ Core CSS.
16 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
--------------------------------------------------------------------------------*/
.container
{
	margin-left: auto;
	margin-right: auto;
	width: 1002px;
}

/* =Grid >> Global
--------------------------------------------------------------------------------*/
.g62, .g124, .g186, .g248, .g310, .g372, .g434, .g496, .g558, .g620, .g682, .g744, .g806, .g868, .g930, .g992 {
	display: inline;
	float: left;
	margin:0 0 0 10px;
}

/* =Grid >> 16 Columns
--------------------------------------------------------------------------------*/
.g62{width:52px;}
.g124{width:114px;}
.g186{width:172px;}
.g248{width:238px;}
.g310{width:300px;}
.g372{width:362px;}
.g434{width:424px;}
.g496{width:486px;}
.g558{width:548px;}
.g620{width:610px;}
.g682{width:672px;}
.g744{
	width:744px;
}
.g806{width:796px;}
.g868{width:858px;}
.g930{width:920px;}
.g992{width:982px;}


/* =Grid >> 16 Columns - no left margin
--------------------------------------------------------------------------------*/
.ml62{margin-left:72px;}
.ml124{margin-left:134px;}
.ml186{margin-left:196px;}
.ml248{margin-left:258px;}
.ml310{margin-left:320px;}
.ml372{margin-left:382px;}
.ml434{margin-left:444px;}
.ml496{margin-left:506px;}
.ml558{margin-left:568px;}
.ml620{margin-left:630px;}
.ml682{margin-left:692px;}
.ml744{margin-left:754px;}
.ml806{margin-left:816px;}
.ml868{margin-left:878px;}
.ml930{margin-left:940px;}
.ml992{margin-left:1002px;}


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

