/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/
/* Table of Contents
==================================================
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing */
/* #Base 1184 Grid
================================================== */
.container {
  position: relative;
  max-width: 1184px;
  margin: 0 auto;
  padding: 0;
}
.container .column,
.container .columns {
  float: left;
  display: inline;
  margin-left: 1.3%;
  margin-right: 1.3%;
}
.row {
  margin-bottom: 16px;
}
/* Nested Column Classes */
.column.alpha,
.columns.alpha {
  margin-left: 0;
}
.column.omega,
.columns.omega {
  margin-right: 0;
}
/* Base Grid */
.container .one.column,
.container .one.columns {
  width: 3.65%;
}
.container .two.columns {
  width: 9.9%;
}
.container .three.columns {
  width: 16.15%;
}
.container .four.columns {
  width: 22.4%;
}
.container .five.columns {
  width: 28.65%;
}
.container .six.columns {
  width: 34.9%;
}
.container .seven.columns {
  width: 41.15%;
}
.container .eight.columns {
  width: 47.4%;
}
.container .nine.columns {
  width: 53.65%;
}
.container .ten.columns {
  width: 59.9%;
}
.container .eleven.columns {
  width: 66.15%;
}
.container .twelve.columns {
  width: 72.4%;
}
.container .thirteen.columns {
  width: 78.65%;
}
.container .fourteen.columns {
  width: 84.9%;
}
.container .fifteen.columns {
  width: 91.15%;
}
.container .sixteen.columns {
  width: 97.4%;
}
.container .one-third.column {
  width: 30.73;
  background: #ccc;
}
.container .two-thirds.column {
  width: 64.06%;
}
/*  #Mobile (Portrait)
================================================== */
/* Note: Design for a width of 320px */
@media only screen and (max-width: 792px) {
  .container {
    width: 100%;
  }
  .container .columns,
  .container .column {
    margin: 0 3% 10px 3%;
  }
  .container .one.column,
  .container .one.columns,
  .container .two.columns,
  .container .three.columns,
  .container .four.columns,
  .container .five.columns,
  .container .six.columns,
  .container .seven.columns,
  .container .eight.columns,
  .container .nine.columns,
  .container .ten.columns,
  .container .eleven.columns,
  .container .twelve.columns,
  .container .thirteen.columns,
  .container .fourteen.columns,
  .container .fifteen.columns,
  .container .sixteen.columns,
  .container .one-third.column,
  .container .two-thirds.column {
    width: 94%;
  }
}
/* #Clearing
================================================== */
/* Self Clearing Goodness */
.container:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.row:after,
.clearfix:after {
  clear: both;
}
.row,
.clearfix {
  zoom: 1;
}
