/*
	Variable Grid System.
	Learn more ~ http://www.spry-soft.com/columns/
	Based on 960 Grid System - http://960.gs/

	Licensed under GPL and MIT.
*/


/* Containers
----------------------------------------------------------------------------------------------------*/
.column
{
	float:left;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/
.column_1,
.column_2,
.column_3,
.column_4,
.column_5,
.column_6,
.column_7,
.column_8,
.column_9,
.column_10,
.column_11,
.column_12 {
	display:inline;
	float: left;
	position: relative;
	margin: 0px;
	padding:0px;
}

/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* Grid >> 16 Columns
----------------------------------------------------------------------------------------------------*/
/* Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/
---------------------------------------------------------------------------------------------------*/

.column_1 {
	width:60px;
}

.column_2 {
	width:120px;
}

.column_3 {
	width:180px;
}

.column_4 {
	width:240px;
}

.column_5 {
	width:300px;
}

.column_6 {
	width:360px;
}

.column_7 {
	width:420px;
}

.column_8 {
	width:480px;
}

.column_9 {
	width:540px;
}

.column_10 {
	width:600px;
}

.column_11 {
	width:660px;
}

.column_12 {
	width:720px;
}



/* Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

 .prefix_1 {
	padding-left:60px;
}

 .prefix_2 {
	padding-left:120px;
}

 .prefix_3 {
	padding-left:180px;
}

 .prefix_4 {
	padding-left:240px;
}

 .prefix_5 {
	padding-left:300px;
}

 .prefix_6 {
	padding-left:360px;
}

 .prefix_7 {
	padding-left:420px;
}

 .prefix_8 {
	padding-left:480px;
}

 .prefix_9 {
	padding-left:540px;
}

 .prefix_10 {
	padding-left:600px;
}

 .prefix_11 {
	padding-left:660px;
}



/* Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

 .suffix_1 {
	padding-right:60px;
}

 .suffix_2 {
	padding-right:120px;
}

 .suffix_3 {
	padding-right:180px;
}

 .suffix_4 {
	padding-right:240px;
}

 .suffix_5 {
	padding-right:300px;
}

 .suffix_6 {
	padding-right:360px;
}

 .suffix_7 {
	padding-right:420px;
}

 .suffix_8 {
	padding-right:480px;
}

 .suffix_9 {
	padding-right:540px;
}

 .suffix_10 {
	padding-right:600px;
}

 .suffix_11 {
	padding-right:660px;
}



/* Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

 .push_1 {
	left:60px;
}

 .push_2 {
	left:120px;
}

 .push_3 {
	left:180px;
}

 .push_4 {
	left:240px;
}

 .push_5 {
	left:300px;
}

 .push_6 {
	left:360px;
}

 .push_7 {
	left:420px;
}

 .push_8 {
	left:480px;
}

 .push_9 {
	left:540px;
}

 .push_10 {
	left:600px;
}

 .push_11 {
	left:660px;
}



/* Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

 .pull_1 {
	left:-60px;
}

 .pull_2 {
	left:-120px;
}

 .pull_3 {
	left:-180px;
}

 .pull_4 {
	left:-240px;
}

 .pull_5 {
	left:-300px;
}

 .pull_6 {
	left:-360px;
}

 .pull_7 {
	left:-420px;
}

 .pull_8 {
	left:-480px;
}

 .pull_9 {
	left:-540px;
}

 .pull_10 {
	left:-600px;
}

 .pull_11 {
	left:-660px;
}




/* 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;
}
