/*
	Variable Grid System (Fluid Version).
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/ & 960 Fluid - http://www.designinfluences.com/

	Licensed under GPL and MIT.
*/


/* Containers
----------------------------------------------------------------------------------------------------*/
.container_1 {
	overflow:auto;
	padding-top: 10px;  
	margin-top: 20px;
	width: 960px;
	/*width: 92%;*/
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 5px;  
	min-height:550px;
     /*height:auto !important;*/
     height:550px;
	 overflow:scroll;
	 overflow-x: hidden;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_1 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 10px;
	margin-right: 10px;
}

/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* Grid >> 1 Columns
----------------------------------------------------------------------------------------------------*/


.container_1 .grid_1 {
	width:100px;
}

/* Prefix Extra Space >> 1 Columns
----------------------------------------------------------------------------------------------------*/




/* Suffix Extra Space >> 1 Columns
----------------------------------------------------------------------------------------------------*/




/* Push Space >> 1 Columns
----------------------------------------------------------------------------------------------------*/




/* Pull Space >> 1 Columns
----------------------------------------------------------------------------------------------------*/





/* 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;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}