/**
* Layout Stylesheet v1
* René Schulz (http://duofrei.de & http://rene-schulz.info)
*/

/* Percentage Grid */
.l-full {
	width: 100%;
	clear: both;
}

.l-three-quaders {
	width: 72.5%;
}

.l-half {
	width: 47.5%;
}

.l-one-quader {
	width: 22.5%;
}

.l-one-third {
	width: 30.5%;
	float: left;
	margin-left: 1rem;
}

.l-two-third {
	width: 64.5%;
}

.l-three-quaders, 
.l-half,
.l-one-quader {
	margin-left: 2.5%;
	float: left;
}

/* Sticky Footer */
html {
	height: 100%;
	width: 100%;
}

body {
	height: 100%;
}

#viewport {
	min-height: 100%;
	width: 100%;
	overflow: hidden;
	}
	
#base, 
#page {
	height: 100%;
	overflow: auto;
	margin-bottom: 3.125rem; /* Identical to height and margin of footer to be sticky */
	position: relative;
	z-index: 998;
	} 
	
footer {
	height: 3.125rem;
	margin-top: -3.125rem;
	position: relative;
	z-index: 999;
	}

/* Main Layout */		
header {
	height: auto;
}

#content {
	height: 100%;
	overflow: hidden;
	position: relative;
}

#content > .wrapper {
	min-height: 100%;
	overflow: auto;
}

/* Layout Page */
#page > #content > .wrapper {
	padding: 2rem 0;
}

