/*
* Skeleton V1.1
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 8/17/2011
*/
/* Table of Contents
==================================================
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing */
/* #Base 
================================================== */
.container {
  position: relative;
  max-width: 1200px;
  margin: 0;
  padding: 0 0.5rem;
}
.container .column,
.container .columns {
  float: left;
  display: inline;
  margin-left: 10px;
  margin-right: 10px;
}
.row {
  margin-bottom: 49px;
}
/* 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: 8.3333333333%;
}
.container .two.columns {
  width: 16.6666666666%;
}
.container .three.columns {
  width: 24.9999999999%;
}
.container .four.columns {
  width: 33.3333333332%;
}
.container .five.columns {
  width: 41.6666666665%;
}
.container .six.columns {
  width: 49.9999999998%;
}
.container .seven.columns {
  width: 58.3333333331%;
}
.container .eight.columns {
  width: 66.6666666664%;
}
.container .nine.columns {
  width: 74.9999999997%;
}
.container .ten.columns {
  width: 83.333333333%;
}
.container .eleven.columns {
  width: 91.6666666663%;
}
.container .twelve.columns {
  width: 99.9999999996%;
}
.container .thirteen.columns {
  width: 81.25%;
}
.container .fourteen.columns {
  width: 87.5%;
}
.container .fifteen.columns {
  width: 63.75%;
}
.container .sixteen.columns {
  width: 100%;
}
.container .one-third.column {
  width: 33.333%;
}
.container .two-thirds.column {
  width: 66.666%;
}
/* Offsets */
.container .offset-by-one {
  padding-left: 8.3333333333%;
}
.container .offset-by-two {
  padding-left: 16.6666666666%;
}
.container .offset-by-three {
  padding-left: 24.9999999999%;
}
.container .offset-by-four {
  padding-left: 33.3333333332%;
}
.container .offset-by-five {
  padding-left: 41.6666666665%;
}
.container .offset-by-six {
  padding-left: 49.9999999998%;
}
.container .offset-by-seven {
  padding-left: 58.3333333331%;
}
.container .offset-by-eight {
  padding-left: 66.6666666664%;
}
.container .offset-by-nine {
  padding-left: 74.9999999997%;
}
.container .offset-by-ten {
  padding-left: 83.333333333%;
}
.container .offset-by-eleven {
  padding-left: 91.6666666663%;
}
.container .offset-by-twelve {
  padding-left: 99.9999999996%;
}
.container .offset-by-thirteen {
  padding-left: 81.25%;
}
.container .offset-by-fourteen {
  padding-left: 87.5%;
}
.container .offset-by-fifteen {
  padding-left: 63.75%;
}
/*  #Mobile (Portrait)
================================================== */
@media only screen and (max-width: 800px) {
  .container {
    width: 100%;
    padding: 0;
  }
  .container .columns,
  .container .column {
    margin: 0;
  }
  .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: 100%;
  }
  /* Offsets */
  .container .offset-by-one,
  .container .offset-by-two,
  .container .offset-by-three,
  .container .offset-by-four,
  .container .offset-by-five,
  .container .offset-by-six,
  .container .offset-by-seven,
  .container .offset-by-eight,
  .container .offset-by-nine,
  .container .offset-by-ten,
  .container .offset-by-eleven,
  .container .offset-by-twelve,
  .container .offset-by-thirteen,
  .container .offset-by-fourteen,
  .container .offset-by-fifteen {
    padding-left: 0;
  }
}
/* #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;
}
/* You can also use a <br class="clear" /> to clear columns */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
