/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;

}

.row {
  margin-bottom: 0px;
}
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 100%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 100%; }
  .column,
  .columns {
    margin-right: 0; }
  .column:last-child,
  .columns:last-child {
    margin-right: 0; }

  .one.column,
  .one.columns                    { width: 8.3333333333%; }
  .two.columns                    { width: 16.6666666667%; }
  .three.columns                  { width: 25%;            }
  .four.columns                   { width: 33.3333333333%; }
  .five.columns                   { width: 41.6666666667%; }
  .six.columns                    { width: 50%;            }
  .seven.columns                  { width: 58.3333333333%; }
  .eight.columns                  { width: 66.6666666667%; }
  .nine.columns                   { width: 75%;          }
  .ten.columns                    { width: 83.3333333333%; }
  .eleven.columns                 { width: 91.6666666667%; }
  .twelve.columns                 { width: 100%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.3333333333%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 16.6666666667%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 25%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 33.3333333333%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 41.6666666667%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 50%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 58.3333333333%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 66.6666666667%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 75%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 83.3333333333%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 91.6666666667%; }

}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }


