
/*
* Fluid Skeleton

/* Flexible Column Widths - mobile first
================================================== */

    	.container                                  { position: relative; width: 100%; max-width: 1240px; margin: 0 auto; padding: 0; }
        .container .columns,
        .container .column 							{ float: left; display: inline; padding-left: 1em; padding-right: 1em; }

        .container .half.column,
        .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 				{ margin-left: 0; }


 /* #getting bigger - breakpoint tablets
================================================== */
    @media only screen and (min-width: 480px) {

        .container                                  { width: 90%; }

	}

 /* #getting bigger - breakpoint beyond tablets portrait
================================================== */
    @media only screen and (min-width: 767px) {

        .container .columns                         { padding-left: 1em; padding-right: 1em; }

        .container .half.columns                    { width: 3.125%; }
        .container .one.columns                     { width: 6.25%; }
        .container .two.columns                     { width: 12.5%; }
        .container .three.columns                   { width: 18.75%; }
        .container .four.columns                    { width: 25%; }
        .container .five.columns                    { width: 31.25%; }
        .container .six.columns                     { width: 37.5%; }
        .container .seven.columns                   { width: 43.75%; }
        .container .eight.columns                   { width: 50%; }
        .container .nine.columns                    { width: 56.25%; }
        .container .ten.columns                     { width: 62.5%; }
        .container .eleven.columns                  { width: 68.75%; }
        .container .twelve.columns                  { width: 75%; }
        .container .thirteen.columns                { width: 81.25%; }
        .container .fourteen.columns                { width: 87.5%; }
        .container .fifteen.columns                 { width: 93.75%; }
        .container .sixteen.columns                 { width: 100%; }
        .container .one-third.column				{ width: 33.33%; }
        .container .two-thirds.column 				{ width: 66.66%; }

        /* Offsets */
        .container .offset-by-half                  { margin-left: 3.125%; }
        .container .offset-by-one                   { margin-left: 6.25%; }
        .container .offset-by-two                   { margin-left: 12.5%; }
        .container .offset-by-three                 { margin-left: 18.75%; }
        .container .offset-by-four                  { margin-left: 25%; }
        .container .offset-by-five                  { margin-left: 31.25%; }
        .container .offset-by-six                   { margin-left: 37.5%; }
        .container .offset-by-seven                 { margin-left: 43.75%; }
        .container .offset-by-eight                 { margin-left: 50%; }
        .container .offset-by-nine                  { margin-left: 56.25%; }
        .container .offset-by-ten                   { margin-left: 62.5%; }
        .container .offset-by-eleven                { margin-left: 68.75%; }
        .container .offset-by-twelve                { margin-left: 75%; }
        .container .offset-by-thirteen              { margin-left: 81.25%; }
        .container .offset-by-fourteen              { margin-left: 87.5%; }
        .container .offset-by-fifteen               { margin-left: 93.75%; }

        }



/* #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;
    }



/* apply a natural box layout model to all elements */
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

