
/*
	960  grid System ~ Core CSS.
	http://960.gs/
	
	modified to remove 16 column definitions
	modified to dynamically create css definitions
	
	Licensed under GPL and MIT.
*/

/*
	Forces backgrounds to span full width,
	even if there is horizontal scrolling.
	Increase this if your layout is wider.

	Note: IE6 works fine without this fix.
*/

body {
	min-width: 936px;
}

/* `Containers
----------------------------------------------------------------------------------------------------*/

.container_12 {
	margin-left: auto;
	margin-right: auto;
	width: 936px;
}



/* `Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.grid_1, .xwidth8 {
	width: 38px;
	display: inline;
	float: left;
	margin-left: 20px;
	margin-right:  20px;
}
.grid_2, .xwidth16 {
	width: 116px;
	display: inline;
	float: left;
	margin-left: 20px;
	margin-right:  20px;
}
.grid_3, .xwidth25 {
	width: 194px;
	display: inline;
	float: left;
	margin-left: 20px;
	margin-right:  20px;
}
.grid_4, .xwidth33 {
	width: 272px;
	display: inline;
	float: left;
	margin-left: 20px;
	margin-right:  20px;
}
.grid_5, .xwidth41 {
	width: 350px;
	display: inline;
	float: left;
	margin-left: 20px;
	margin-right:  20px;
}
.grid_6, .xwidth50 {
	width: 428px;
	display: inline;
	float: left;
	margin-left: 20px;
	margin-right:  20px;
}
.grid_7, .xwidth58 {
	width: 506px;
	display: inline;
	float: left;
	margin-left: 20px;
	margin-right:  20px;
}
.grid_8, .xwidth66 {
	width: 584px;
	display: inline;
	float: left;
	margin-left: 20px;
	margin-right:  20px;
}
.grid_9, .xwidth75 {
	width: 662px;
	display: inline;
	float: left;
	margin-left: 20px;
	margin-right:  20px;
}
.grid_10, .xwidth83 {
	width: 740px;
	display: inline;
	float: left;
	margin-left: 20px;
	margin-right:  20px;
}
.grid_11, .xwidth91 {
	width: 818px;
	display: inline;
	float: left;
	margin-left: 20px;
	margin-right:  20px;
}
.grid_12, .xwidth100 {
	width: 896px;
	display: inline;
	float: left;
	margin-left: 20px;
	margin-right:  20px;
}


/* `Prefix Extra Space >> Global
----------------------------------------------------------------------------------------------------*/

.prefix_1 {
	padding-left: 78px;
}
.prefix_2 {
	padding-left: 156px;
}
.prefix_3 {
	padding-left: 234px;
}
.prefix_4 {
	padding-left: 312px;
}
.prefix_5 {
	padding-left: 390px;
}
.prefix_6 {
	padding-left: 468px;
}
.prefix_7 {
	padding-left: 546px;
}
.prefix_8 {
	padding-left: 624px;
}
.prefix_9 {
	padding-left: 702px;
}
.prefix_10 {
	padding-left: 780px;
}
.prefix_11 {
	padding-left: 858px;
}
.prefix_12 {
	padding-left: 936px;
}



/* `Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/
.suffix_1 {
	padding-right: 78px;
}
.suffix_2 {
	padding-right: 156px;
}
.suffix_3 {
	padding-right: 234px;
}
.suffix_4 {
	padding-right: 312px;
}
.suffix_5 {
	padding-right: 390px;
}
.suffix_6 {
	padding-right: 468px;
}
.suffix_7 {
	padding-right: 546px;
}
.suffix_8 {
	padding-right: 624px;
}
.suffix_9 {
	padding-right: 702px;
}
.suffix_10 {
	padding-right: 780px;
}
.suffix_11 {
	padding-right: 858px;
}
.suffix_12 {
	padding-right: 936px;
}


/* `Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.push_1 {
	position:relative;
	left: 78px;
}
.push_2 {
	position:relative;
	left: 156px;
}
.push_3 {
	position:relative;
	left: 234px;
}
.push_4 {
	position:relative;
	left: 312px;
}
.push_5 {
	position:relative;
	left: 390px;
}
.push_6 {
	position:relative;
	left: 468px;
}
.push_7 {
	position:relative;
	left: 546px;
}
.push_8 {
	position:relative;
	left: 624px;
}
.push_9 {
	position:relative;
	left: 702px;
}
.push_10 {
	position:relative;
	left: 780px;
}
.push_11 {
	position:relative;
	left: 858px;
}
.push_12 {
	position:relative;
	left: 936px;
}

}

/* `Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.push_1 {
	position:relative;
	left: -78px;
}
.push_2 {
	position:relative;
	left: -156px;
}
.push_3 {
	position:relative;
	left: -234px;
}
.push_4 {
	position:relative;
	left: -312px;
}
.push_5 {
	position:relative;
	left: -390px;
}
.push_6 {
	position:relative;
	left: -468px;
}
.push_7 {
	position:relative;
	left: -546px;
}
.push_8 {
	position:relative;
	left: -624px;
}
.push_9 {
	position:relative;
	left: -702px;
}
.push_10 {
	position:relative;
	left: -780px;
}
.push_11 {
	position:relative;
	left: -858px;
}
.push_12 {
	position:relative;
	left: -936px;
}

/* `Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/


.alpha, .first {
	margin-left: 0;
}

.omega, .last {
	margin-right: 0;
}




/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after {
	content: '\0020';
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix:after {
	clear: both;
}

/*
	The following zoom:1 rule is specifically for IE6 + IE7.
	Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix {
	zoom: 1;
}
