/*
960px grid system ~ Core CSS.
6 Columns ~ Margin left: 8px ~ Margin right: 8px

Based on the 960.gs grid system - http://960.gs/
by Nathan Smith

Created by the Grid System Generator - v1.04
Learn more ~ http://www.gridsystemgenerator.com/
*/

/*
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: 960px;
}

/* =Containers
--------------------------------------------------------------------------------*/
.container
{
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}

/* =Grid >> Global
--------------------------------------------------------------------------------*/
.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6 {
	display: inline;
	float: left;
	margin-left: 8px;
	margin-right: 8px;
}

.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5 {
	position: relative;
}

/* =Grid >> Children (Alpha ~ First, Omega ~ Last)
--------------------------------------------------------------------------------*/
.alpha {margin-left: 0;}
.omega {margin-right: 0;}

/* =Grid >> 6 Columns
--------------------------------------------------------------------------------*/
.container .grid_1 {width: 144px;}
.container .grid_2 {width: 304px;}
.container .grid_3 {width: 464px;}
.container .grid_4 {width: 624px;}
.container .grid_5 {width: 784px;}
.container .grid_6 {width: 944px;}

/* =Prefix Extra Space >> 6 Columns
--------------------------------------------------------------------------------*/
.container .prefix_1 {padding-left: 160px;}
.container .prefix_2 {padding-left: 320px;}
.container .prefix_3 {padding-left: 480px;}
.container .prefix_4 {padding-left: 640px;}
.container .prefix_5 {padding-left: 800px;}

/* =Suffix Extra Space >> 6 Columns
--------------------------------------------------------------------------------*/
.container .suffix_1 {padding-right: 160px;}
.container .suffix_2 {padding-right: 320px;}
.container .suffix_3 {padding-right: 480px;}
.container .suffix_4 {padding-right: 640px;}
.container .suffix_5 {padding-right: 800px;}

/* `Push Space >> 6 Columns
--------------------------------------------------------------------------------*/
.container .push_1 {left: 160px;}
.container .push_2 {left: 320px;}
.container .push_3 {left: 480px;}
.container .push_4 {left: 640px;}
.container .push_5 {left: 800px;}

/* `Pull Space >> 6 Columns
--------------------------------------------------------------------------------*/
.container .pull_1 {left: -160px;}
.container .pull_2 {left: -320px;}
.container .pull_3 {left: -480px;}
.container .pull_4 {left: -640px;}
.container .pull_5 {left: -800px;}

/* `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;
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}