/*
*
* Lemonade v1.1
* Copyright 2013, Joe Richardson
* lemonade.im
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
*/

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box
}

/* Set the width of the grid */
.frame {
  margin: 0px auto;
}

/* Attribute selector */
[class*='bit-'] {
  float: left;
  padding: 0px 10px;
  transition: width 0.8s ease 0s;
}

/* Floats last ".bit-" to the right */
[class*='bit-']:last-of-type {
  float: right
}

/* Clearfix */
.frame:after {
  content: "";
  display: table;
  clear: both
}

/* Main Widths */
.bit-1  { width: 100% }
.bit-2  { width: 50% }
.bit-3  { width: 33.33% }
.bit-4  { width: 25% }
.bit-5  { width: 20% }
.bit-6  { width: 16.6666666667% }
.bit-7  { width: 14.2857142857% }
.bit-8  { width: 12.5% }
.bit-9  { width: 11.1111111111% }
.bit-10 { width: 10% }
.bit-11 { width: 9.09090909091% }
.bit-12 { width: 8.33% }



.bit-58 {width:58%}
.bit-42 {width:42%}

.bit-68 {width:68%}
.bit-32 {width:32%}

.bit-72 {width:72%}
.bit-28 {width:28%}

/* Landscape mobile & down */
@media (max-width: 30em) {
  .bit-1,
  .bit-2,
  .bit-3,
  .bit-4,
  .bit-5,
  .bit-6,
  .bit-7,
  .bit-8,
  .bit-9,
  .bit-10,
  .bit-11,
  .bit-12 {
    width: 100%;
  }

	.bit-58 {width:100%}
	.bit-42 {width:100%}
	
	.bit-68 {width:100%}
	.bit-32 {width:100%}
	
	.bit-72 {width:100%}
	.bit-28 {width:100%}
}

/* Portrait tablet to landscape */
@media (min-width: 30em) and (max-width: 50em) {
  .bit-4,
  .bit-6,
  .bit-8,
  .bit-10,
  .bit-12 {
    width: 50%
  }

  .bit-1,
  .bit-2,
  .bit-3,
  .bit-5,
  .bit-7,
  .bit-9,
  .bit-11 {
    width: 100%
  }
  
 	.bit-58 {width:100%}
	.bit-42 {width:100%}
	   
	.bit-68 {width:100%}
	.bit-32 {width:100%}
	
	.bit-72 {width:100%}
	.bit-28 {width:100%}
}

/* Landscape to small desktop */
@media (min-width: 50em) and (max-width: 68.750em) {
  
  .bit-7 {
    width: 100%
  }

  .bit-4,
  .bit-8,
  .bit-10,
  .bit-12 {
    width: 50%
  }
  
 	.bit-58 {width:58%}
	.bit-42 {width:42%}
	 
	.bit-68 {width:68%}
	.bit-32 {width:32%}	
	
	.bit-72 {width:72%}
	.bit-28 {width:28%}
}
