/*
	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,
 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 0px;
	margin-right: 0px;
}

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

.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

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

 .column_1 {
	width:82px;
}

 .column_2 {
	width:164px;
}

 .column_3 {
	width:246px;
}

 .column_4 {
	width:328px;
}

 .column_5 {
	width:410px;
}

 .column_6 {
	width:492px;
}

 .column_7 {
	width:574px;
}

 .column_8 {
	width:656px;
}

 .column_9 {
	width:738px;
}

 .column_10 {
	width:820px;
}

 .column_11 {
	width:902px;
}

.column_12{
	width:984px;
}



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

 .prefix_1 {
	padding-left:82px;
}

 .prefix_2 {
	padding-left:164px;
}

 .prefix_3 {
	padding-left:246px;
}

 .prefix_4 {
	padding-left:328px;
}

 .prefix_5 {
	padding-left:410px;
}

 .prefix_6 {
	padding-left:492px;
}

 .prefix_7 {
	padding-left:574px;
}

 .prefix_8 {
	padding-left:656px;
}

 .prefix_9 {
	padding-left:738px;
}

 .prefix_10 {
	padding-left:820px;
}

 .prefix_11 {
	padding-left:902px;
}



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

 .suffix_1 {
	padding-right:82px;
}

 .suffix_2 {
	padding-right:164px;
}

 .suffix_3 {
	padding-right:246px;
}

 .suffix_4 {
	padding-right:328px;
}

 .suffix_5 {
	padding-right:410px;
}

 .suffix_6 {
	padding-right:492px;
}

 .suffix_7 {
	padding-right:574px;
}

 .suffix_8 {
	padding-right:656px;
}

 .suffix_9 {
	padding-right:738px;
}

 .suffix_10 {
	padding-right:820px;
}

 .suffix_11 {
	padding-right:902px;
}



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

 .push_1 {
	left:82px;
}

 .push_2 {
	left:164px;
}

 .push_3 {
	left:246px;
}

 .push_4 {
	left:328px;
}

 .push_5 {
	left:410px;
}

 .push_6 {
	left:492px;
}

 .push_7 {
	left:574px;
}

 .push_8 {
	left:656px;
}

 .push_9 {
	left:738px;
}

 .push_10 {
	left:820px;
}

 .push_11 {
	left:902px;
}



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

 .pull_1 {
	left:-82px;
}

 .pull_2 {
	left:-164px;
}

 .pull_3 {
	left:-246px;
}

 .pull_4 {
	left:-328px;
}

 .pull_5 {
	left:-410px;
}

 .pull_6 {
	left:-492px;
}

 .pull_7 {
	left:-574px;
}

 .pull_8 {
	left:-656px;
}

 .pull_9 {
	left:-738px;
}

 .pull_10 {
	left:-820px;
}

 .pull_11 {
	left:-902px;
}




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