/* ========================================================================================================================
Grid CSS (includes base mobile grid styles)
Copyright 2013 DesignGoblin
v.1.0 (2013-09-07)
=========================================================================================================================== */

.container {
	position: relative;
	max-width: 1480px;
	padding: 0;
	margin:0 auto;
}

.container .col { float: left; display: inline; }


    /* Base Grid */
    .container .one      { width: 8.3333333333%;  }
    .container .two      { width: 16.6666666667%; }
    .container .fifth		 { width:20%; }
    .container .three    { width: 25%; }
    .container .four     { width: 33.3333333333%; }
    .container .five     { width: 41.6666666667%; }
    .container .six      { width: 50%; }
    .container .seven    { width: 58.3333333333%; }
    .container .eight    { width: 66.6666666667%; }
    .container .nine     { width: 75%; }
    .container .ten      { width: 83.3333333333%; }
    .container .eleven   { width: 91.6666666667%;; }
    .container .twelve   { width: 100%; }


 @media only screen and (max-width: 1023px) {
        .container { width: 100%; }
        .container .col {
			margin: 0;
		}

        .container .one,
        .container .two,
	    .container .fifth,
        .container .three,
        .container .four,
        .container .five,
        .container .six,
        .container .seven,
        .container .eight,
        .container .nine,
        .container .ten,
        .container .eleven,
        .container .twelve   { width: 100%; }
    }


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 1023px) {
        .container .one,
        .container .two,
		.container .fifth,
        .container .three,
        .container .four,
        .container .five,
        .container .six,
        .container .seven,
        .container .eight,
        .container .nine,
        .container .ten,
        .container .eleven {width:100%;float:left;display: inline;}
    }

/* #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;
    }
    .row {
      clear: both;
      display: block;
      overflow: hidden;
    }

