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


@media (min-width: 320px) and (max-width: 480px) {

}

@media (min-width: 481px) and (max-width: 767px) {

}

@media (min-width: 768px) and (max-width: 1024px) {

}

@media (min-width: 1025px) and (max-width: 1280px) {

}

@media (min-width: 1281px) {

}


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container, .currentHead {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px; 
}
.row {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}
.column,
.columns {
	flex: 1 1 auto;
	box-sizing: border-box;
 }

/* For devices larger than 320px */
@media (min-width: 320px) and (max-width: 1024px) {
  .container, .currentHead {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 1025px) and (max-width: 3080px) {
  .row {
	flex-direction: row;
	justify-content: space-between;
}
  
  .container, .currentHead {
    width: 80%; }


  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 25%;            }
  .four.columns                   { width: 33.3333333333%; }
  .five.columns                   { width: 40%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 80%; }
  .eight.columns                  { width: 70%; }
  .nine.columns                   { width: 74%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%;           }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

}
/* #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;
    }
