/*
	960 Grid System ~ Core CSS.
	Learn more ~ http://960.gs/

	Licensed under GPL and MIT.
*/

/* `Containers
----------------------------------------------------------------------------------------------------*/

.container {
	margin-left: auto;
	margin-right: auto;
	left: 50%;
	margin-left: -540px;
	position: relative;
	width: 1080px;
}

/* `Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_s,
.grid_m,
.grid_l,
.grid_xl {
	display: inline;
	float: left;
	margin: 0px;
	width:  inherit;
}

.grid_s {
	width: 60px;
}

.grid_m {
	width: 240px;
}

.grid_l {
	width: 480px;
}

.grid_xl {
	width: 960px;
}

/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	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;
}