* { 
	margin:0; 
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-sizing: border-box;
	
	transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}

html, body {
	height: 100%;
}

a {
	text-decoration: none;
	font-size: 1.4em;
}
a img {
	border: none;
}

p {
	margin-bottom: 1em;
	font-size: 1.4em;
	line-height: 1.6;
}

/* FORM ELEMENTS */



/* STRUCTURAL */

section, .wrap {
	min-width: 1000px;
}
section {
	padding: 3.5% 0;
	position: relative;
}
.wrap {
	padding: 0 5%;
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
}

.padding {
	padding: 5%;
}

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

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

.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 {
	column-count: 2;
	-moz-column-count: 2;
	-webkit-column-count: 2;
}

/* GRID */

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

.unit {
	float: left;
}

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

.fullHalf {
	width: 50%;
}

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

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

.fullQuarter {
	width: 25%;
}

.last {
	margin-right: 0;
}

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