/*
  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: 480px;
}

/* `Container
----------------------------------------------------------------------------------------------------*/

.modal_6 {
  margin-left: auto;
  margin-right: auto;
  width: 480px;
}

/* `Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6 {
  display: inline;
  float: left;
  margin-left: 10px;
  margin-right: 10px;
}

.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5 {
  position: relative;
}

/* `Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
  margin-left: 0;
}

.omega {
  margin-right: 0;
}

/* `Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.modal_6 .grid_1 {
  width: 60px;
}

.modal_6 .grid_2 {
  width: 140px;
}

.modal_6 .grid_3 {
  width: 220px;
}

.modal_6 .grid_4 {
  width: 300px;
}

.modal_6 .grid_5 {
  width: 380px;
}

.modal_6 .grid_6 {
  width: 460px;
}

/* `Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.modal_6 .prefix_1 {
  padding-left: 80px;
}

.modal_6 .prefix_2 {
  padding-left: 160px;
}

.modal_6 .prefix_3 {
  padding-left: 240px;
}

.modal_6 .prefix_4 {
  padding-left: 320px;
}

.modal_6 .prefix_5 {
  padding-left: 400px;
}

/* `Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.modal_6 .suffix_1 {
  padding-right: 80px;
}

.modal_6 .suffix_2 {
  padding-right: 160px;
}

.modal_6 .suffix_3 {
  padding-right: 240px;
}

.modal_6 .suffix_4 {
  padding-right: 320px;
}

.modal_6 .suffix_5 {
  padding-right: 400px;
}

/* `Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.modal_6 .push_1 {
  left: 80px;
}

.modal_6 .push_2 {
  left: 160px;
}

.modal_6 .push_3 {
  left: 240px;
}

.modal_6 .push_4 {
  left: 320px;
}

.modal_6 .push_5 {
  left: 400px;
}

/* `Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.modal_6 .pull_1 {
  left: -80px;
}

.modal_6 .pull_2 {
  left: -160px;
}

.modal_6 .pull_3 {
  left: -240px;
}

.modal_6 .pull_4 {
  left: -320px;
}

.modal_6 .pull_5 {
  left: -400px;
}

/* `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,
.modal_6:before,
.modal_6:after {
  content: '.';
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}

.clearfix:after,
.modal_6:after {
  clear: both;
}

/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix,
.modal_6 {
  zoom: 1;
}