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


/* Grid*/
.container {
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

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

#mobile-indicator {
  display: block;
}

/* For devices larger than 750px */
@media (min-width: 750px) {
  #mobile-indicator {
    display: none;
  }
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 0; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .md-one.column,
  .md-one.columns                    { width: 8.33333333333%; }
  .md-two.columns                    { width: 16.6666666667%; }
  .md-three.columns                  { width: 25%;            }
  .md-four.columns                   { width: 33.3333333333%; }
  .md-five.columns                   { width: 41.6666666666%; }
  .md-six.columns                    { width: 50%;            }
  .md-seven.columns                  { width: 58.3333333333%; }
  .md-eight.columns                  { width: 66.6666666667%; }
  .md-nine.columns                   { width: 75.0%;          }
  .md-ten.columns                    { width: 83.3333333333%; }
  .md-eleven.columns                 { width: 91.6666666667%; }
  .md-twelve.columns                 { width: 100%; margin-left: 0; }

  .md-clear {clear: left}
}

/* For devices larger than 1000px */
@media (min-width: 1000px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 0; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .lg-one.column,
  .lg-one.columns                    { width: 8.33333333333%; }
  .lg-two.columns                    { width: 16.6666666667%; }
  .lg-three.columns                  { width: 25%;            }
  .lg-four.columns                   { width: 33.3333333333%; }
  .lg-five.columns                   { width: 41.6666666666%; }
  .lg-six.columns                    { width: 50%;            }
  .lg-seven.columns                  { width: 58.3333333333%; }
  .lg-eight.columns                  { width: 66.6666666667%; }
  .lg-nine.columns                   { width: 75.0%;          }
  .lg-ten.columns                    { width: 83.3333333333%; }
  .lg-eleven.columns                 { width: 91.6666666667%; }
  .lg-twelve.columns                 { width: 100%; margin-left: 0; }

  .md-clear {clear: none}
}

/* Base Styles */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: normal;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222; }


/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than tablet */
@media (min-width: 750px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 4.2rem; }
  h3 { font-size: 3.6rem; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}


/* Utilities */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }

/* Clearing */

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


/* Media Queries */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet*/
@media (min-width: 550px) {}

/* Larger than tablet  (also point when grid becomes active) */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}

