/*
  Simple Grid
  Learn More - http://dallasbass.com/simple-grid-a-lightweight-responsive-css-grid/
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - dallasbass.com
*/

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0px;
	-webkit-text-size-adjust:100%;
}

[class*='col-'] {
	float: left;
	margin: 1em 2%;
}

.grid-full {
	width: 100%;
}

.grid {
	width: 90%;
	max-width: 1200px;
	margin: 0px auto;
	padding:60px 0;
}

.grid-full:after, .grid:after {
	content: "";
	display: table;
	clear: both;
}

.grid-full img, .grid img{
	max-width: 100%;
	height:auto;
}

.push-right {
	float: right;
}

/* Content Columns */

.col-1-1 {
	width: 96%;
}
.col-2-3, .col-8-12 {
	width: 62.66%;
}

.col-1-2, .col-6-12 {
	width: 46%;
}

.col-1-3, .col-4-12 {
	width: 29.33%;
}

.col-1-4, .col-3-12 {
	width: 21%;
}

.col-1-5 {
	width: 16%;
}

.col-1-6, .col-2-12 {
	width: 12.66%;
}

.col-1-7 {
	width: 10.28%;
}

.col-1-8 {
	width: 8.5%;
}

.col-1-9 {
	width: 7.1%;
}

.col-1-10 {
	width: 6%;
}

.col-1-11 {
	width: 5.09%;
}

.col-1-12 {
	width: 4.33%
}

/* Layout Columns */

.col-11-12 {
	width: 87.66%
}

.col-10-12 {
	width: 79.333%;
}

.col-9-12 {
	width: 71%;
}

.col-5-12 {
	width: 37.66%;
}

.col-7-12 {
	width: 54.33%
}



/* Pushing blocks */

.push-2-3, .push-8-12 {
	margin-left: 66.66%;
}

.push-1-2, .push-6-12 {
	margin-left: 50%;
}

.push-1-3, .push-4-12 {
	margin-left: 33.33%;
}

.push-1-4, .push-3-12 {
	margin-left: 25%;
}

.push-1-5 {
	margin-left: 20%;
}

.push-1-6, .push-2-12 {
	margin-left: 16.667%;
}

.push-1-7 {
	margin-left: 14.28%;
}

.push-1-8 {
	margin-left: 12.5%;
}

.push-1-9 {
	margin-left: 11.1%;
}

.push-1-10 {
	margin-left: 10%;
}

.push-1-11 {
	margin-left: 9.09%;
}

.push-1-12 {
	margin-left: 8.33%
}




@media handheld, only screen and (max-width: 980px) {
	
	[class*='col-'] {
		width: 96%;
		float: none;
		margin: 1em 2%;
	}
	
	
	/* Tablet Layout */
	
	[class*='tab-col-'] {
		float: left;
		margin: 1em 2%;
	}
	
	.tab-col-1-1 {
		width: 96%;
	}
	.tab-col-2-3, .tab-col-8-12 {
		width: 62.66%;
	}

	.tab-col-1-2, .tab-col-6-12 {
		width: 46%;
	}

	.tab-col-1-3, .tab-col-4-12 {
		width: 29.33%;
	}

	.tab-col-1-4, .tab-col-3-12 {
		width: 21%;
	}

	.tab-col-1-5 {
		width: 16%;
	}

	.tab-col-1-6, .tab-col-2-12 {
		width: 12.66%;
	}

	.tab-col-1-7 {
		width: 10.28%;
	}

	.tab-col-1-8 {
		width: 8.5%;
	}

	.tab-col-1-9 {
		width: 7.1%;
	}

	.tab-col-1-10 {
		width: 6%;
	}

	.tab-col-1-11 {
		width: 5.09%;
	}

	.tab-col-1-12 {
		width: 4.33%
	}

	/* Layout Columns */

	.tab-col-11-12 {
		width: 87.66%
	}

	.tab-col-10-12 {
		width: 79.33%;
	}

	.tab-col-9-12 {
		width: 71%;
	}

	.tab-col-5-12 {
		width: 39.66%;
	}

	.tab-col-7-12 {
		width: 54.33%
	}
	
	.hide-on-tab {
		display: none !important;
		width: 0;
		height: 0;
	}
}



@media handheld, only screen and (max-width: 767px) {
	.grid {
		padding: 30px 0;
	}
	[class*='tab-col-'] {
		width: 96%;
		float: none;
		margin: 1em 2%;
	}
}
