/*
Baseline - a designer framework
Copyright (C) 2009 Stephane Curzi, ProjetUrbain.com
Creative Commons Attribution-Share Alike 3.0 License
*/

/******************** Grid ********************/
#page				{ width: 990px; position: relative; } /* 82.5em */
#page:after			{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }

/* Base column markup */
.column				{ margin-left: 18px; display: block; float: left; } /* 1.5em */
.colgroup			{ display: block; float: left; }
.first				{ margin-left: 0; clear: left; }
.gutter				{ margin-left: 18px; } /* 1.5em */
.no-gutter			{ margin-left: 0; }
.align-left			{ float: left; }
.align-right		{ float: right; text-align: right; }
header,
section,
div					{ padding-bottom: 18px; }

.leading			{ margin-bottom: 18px; } /* 1.5em */
.noleading			{ margin-bottom: 0 !important; }		

/* Base column width */
.width1				{ width: 234px; } /* 19.5em */
.width2				{ width: 486px; } /* 40.5em */
.width3				{ width: 738px; } /* 61.5em */
.width4				{ width: 990px; } /* 82.5em */
.full				{ width: 100%; }

/* Base column unit, 2 units = 1 column */
.unitx1				{ width: 108px; } /* 9em */
.unitx2				{ width: 234px; } /* 19.5em, Same as width1 */
.unitx3				{ width: 360px; } /* 30em */
.unitx4				{ width: 486px; } /* 40.5em, Same as width2 */
.unitx5				{ width: 612px; } /* 51em */
.unitx6				{ width: 738px; } /* 61.5em, Same as width3 */
.unitx7				{ width: 864px; } /* 72em */
.unitx8				{ width: 990px; } /* 82.5em, Same as width4 */

/* CSS3 columns */
.columnsx2			{ -webkit-column-count: 2; -webkit-column-gap: 18px; -moz-column-count: 2; -moz-column-gap: 18px; column-count: 2; column-gap: 18px; }
.columnsx4			{ -webkit-column-count: 4; -webkit-column-gap: 18px; -moz-column-count: 4; -moz-column-gap: 18px; column-count: 4; column-gap: 18px; }

/******************** Table ********************/
/* Columns */
.table-column th, .table-column td					{ width: 234px; }
.table-column th.width2, .table-column td.width2	{ width: 486px; }
.table-column th.width3, .table-column td.width3	{ width: 738px; }
.table-column th.width4, .table-column td.width4	{ width: 990px; }

/* Units */
.table-unit th, .table-unit td						{ width: 108px; }
.table-unit th.unitx2, .table-unit td.unitx2		{ width: 234px; }
.table-unit th.unitx3, .table-unit td.unitx3		{ width: 360px; }
.table-unit th.unitx4, .table-unit td.unitx4		{ width: 486px; }
.table-unit th.unitx5, .table-unit td.unitx5		{ width: 612px; }
.table-unit th.unitx6, .table-unit td.unitx6		{ width: 738px; }
.table-unit th.unitx7, .table-unit td.unitx7		{ width: 864px; }
.table-unit th.unitx8, .table-unit td.unitx8		{ width: 990px; }