/*
	Modification of 960 Grid System ~ Core CSS.
	Learn more ~ http://960.gs/
	Licensed under GPL and MIT.
*/

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;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* `Containers
----------------------------------------------------------------------------------------------------*/

.container {
	margin-left: auto;
	margin-right: auto;
	width: 916px;
	padding-left: 12px;
	padding-right: 12px;
}

/* `Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_a,
.grid_b,
.grid_c,
.grid_d {
	display: inline;
	float: left;
	margin-left: 12px;
	margin-right: 12px;
}

/* `Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0;
}
.omega {
	margin-right: 0;
}

/* `Grid
----------------------------------------------------------------------------------------------------*/

.container .grid_a {
	width: 180px;
}
.container .grid_b {
	width: 484px;
}
.container .grid_c {
	width: 688px;
}
.container .grid_d {
	width: 892px;
}

/* `Prefix Extra Space >> 5 Columns
----------------------------------------------------------------------------------------------------*/

.container .prefix_a {
	padding-left: 192px;
}
.container .prefix_b {
	padding-left: 484px;
}
.container .prefix_c {
	padding-left: 688px;
}
.container .prefix_d {
	padding-left: 892px;
}

/* `Suffix Extra Space >> 5 Columns
----------------------------------------------------------------------------------------------------*/

.container .suffix_a {
	padding-right: 180px;
}
.container .suffix_b {
	padding-right: 484px;
}
.container .suffix_c {
	padding-right: 688px;
}
.container .suffix_d {
	padding-right: 892px;
}

/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

html body div.clear, html body span.clear {
	background: none;
	border: 0;
	clear: both;
	display: block;
	float: none;
	font-size: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://www.positioniseverything.net/easyclearing.html */

.clearfix:after {
	clear: both;
	content: '.';
	display: block;
	visibility: hidden;
	height: 0;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
