/*
	Variable Grid System.
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 950 Grid System - http://950.gs/

	Licensed under GPL and MIT.
*/


/* Containers
----------------------------------------------------------------------------------------------------*/
.container_16 {


	/*
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	background-color:#e6e6e6;
	*/


	width: 920px;


}
.container_16_in {
	margin: 0 auto;
	background-color:#666666;
	width: 920px;
}



/* Grid >> Global
----------------------------------------------------------------------------------------------------*/


.grid_5{
	display:inline;
	float: left;
	position: relative;

}

/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* Grid >> 16 Columns
----------------------------------------------------------------------------------------------------*/

.container_16 .grid_5 {
	width:920px;

}




/* 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;
}