* { 
	margin: 0; 
	padding: 0; 
	box-sizing: border-box; 
	-o-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
}
*:focus { outline: none; }

body {
	overflow-x: hidden;
}

ul { list-style: none; }

a { text-decoration: none;}
a img { border: none; }

/* STRUCTURAL */

.padded {
	padding: 5%;
}
.paddedDouble {
	padding: 10% 5%;
}

.noPaddingBtm {
	padding-bottom: 0 !important;
}
.noPaddingTop {
	padding-top: 0 !important;
}
.noPadding {
	padding: 0 !important;
}

.paddedVertical {
	padding: 5% 0;
}
.paddedVerticalDouble {
	padding: 10% 0;
}

.noMarginTop {
	margin-top: 0 !important;
}
.noMarginBtm {
	margin-bottom: 0 !important;
}
.noMargin {
	margin: 0 !important;
}

.center {
	margin: 0 auto;
	text-align: center;
}

.left {
	float: left !important;
}
.right {
	float: right !important;
}

.table {
	display: table;
	width: 100%;
}

.tableCell {
	display: table-cell;
	vertical-align: middle;
	position: relative;
}

.twoColumns {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 60px;
	-moz-column-gap: 60px;
	column-gap: 60px;
}
.threeColumns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 60px;
	-moz-column-gap: 60px;
	column-gap: 60px;
}

/* GRID */

.row {
	clear: both;
	width: 100%;
}

.unit {
	float: left;
}

.full {
	width: 100%;
}
.half {
	width: 47%;
	margin-right: 5%;
}
.half:nth-of-type(even) {
	margin-right: 0;
	float: right;
	clear: right;
}

.fullHalf {
	width: 50%;
}

.third {
	width: 29.3333%;
	margin-right: 5%;
}
.twoThirds {
	width: 63.6666%;
	margin-right: 5%;
}
.fullThird {
	width: 33.3333%;
}
.fullTwoThirds {
	width: 66.6666%;
}

.quarter {
	width: 21%;
	margin-right: 5%;
}

.fullQuarter {
	width: 25%;
}
.fullThreeQuarters {
	width: 75%;
}

.last {
	margin-right: 0;
}

.quarterHeight {
	height: 25%;
}
.threeQuartersHeight {
	height: 75%;
}
.thirdHeight {
	height: 33.3333%;
}
.twoThirdsHeight {
	height: 66.6666%;
}

/* CLEARFIX */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}

@media only screen and (max-width: 1024px) {
	.unit {
		width: 100% !important;
		margin-right: 0;
	}
	.wrap, .paddedDouble {
		padding: 10%;
	}
	.table, .tableCell {
		display: block;
	}
}

@media only screen and (max-width: 768px) {

	.twoColumns {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
	
}

@media only screen and (max-width: 568px) {
	
	
}