/*
	Variable Grid System.
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/

	Licensed under GPL and MIT.
*/

/*
  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: 1008px;
}

/* Containers
----------------------------------------------------------------------------------------------------*/
.container {
	margin-left: auto;
	margin-right: auto;
	width: 1008px;
}



/* Grid >> Global
----------------------------------------------------------------------------------------------------*/
.grid_1 {
	display:inline;
	float: right;
	position: relative;
	margin-left: 5px;
	margin-right: 7px;
	margin-top: 10px;
}
.grid_5,
.grid_8,
.grid_14,
.grid_19,
.grid_24 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 70px;
	margin-right: 35px;
	margin-top: 10px;
	text-align: justify;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}


/* Grid >> 24 Columns
----------------------------------------------------------------------------------------------------*/
.container .grid_1 {
	width:180px;
}

.container .grid_5 {
	width:130px;
}

.container .grid_8 {
	width:326px;
}

.container .grid_14 {
	width:630px;
}

.container .grid_19 {
	width:850px;
}

.container .grid_24 {
	width:998px;
}

/* `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;
}