/*
  960 Grid System ~ Core CSS.
  Learn more ~ 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: 960px;
}
/* `Container
----------------------------------------------------------------------------------------------------*/

.container_12 {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
  position: relative;
}
.container_880 {
  margin-left: -20px;
  margin-right: -20px;
  width: 920px;
  position: relative;
}
.container_list {
	margin-top: 20px;
	position: relative;
}
/* `Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_left, .grid_right, .grid_full, .grid_half {
  display: inline;
  float: left;
  margin-left: 0;
  margin-right: 0;
}
.container_12 .grid_left {
  margin-right: 2px;
  width: 548px;
}
.container_12 .grid_right {
  margin-left: 2px;
  width: 408px;
}
.container_12 .grid_full {
  width: 960px;
}
.container_880 .grid_half {
  width: 420px;
  margin-left: 20px;
  margin-right: 20px;
}
.container_list .grid_left {
	float: left;
	width: 130px;
	position: relative;
}
.container_list .grid_right {
	float: none;
	width: auto;
	display: block;
	margin-left: 140px;
}

/* `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, 

.container_12:before, 
.container_12:after, 

.container_880:before, 
.container_880:after,

.container_list:before, 
.container_list:after {
  content: '.';
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}
.clearfix:after, 
.container_12:after, 
.container_880:after,
.container_list:after {
  clear: both;
}
/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix, 
.container_12, 
.container_880,
.container_list {
  zoom: 1;
}
